と私はそうのように、このreadability APIにいくつかのテキストを渡すためにしようとしています:Pythonの:KeyError例外/例外IOError urllib.urlopen
text = 'this reminds me of the Dutch 2001a caravan full of smoky people Auld Lang Syne'
# construct Readability Metrics API url
request_url = 'http://ipeirotis.appspot.com/readability/GetReadabilityScores?format=json&text=%s' % text
request_url = urllib.quote_plus(request_url.encode('utf-8'))
# make request
j = json.load(urllib.urlopen(request_url))
私も最後の行に、このエラーが発生します。
[errnoに2]そのようなファイルやディレクトリはありません: 'http://ipeirotis.appspot.com/readability/GetReadabilityScores?format=json &テキスト= this +思い出させる+私+ +オランダ+ 2001a +キャラバン+完全+ +スモーキー+人+ Auld + Lang + Syne '
ただし、エラーのURLは有効で、訪問時に応答を返します。 urlopenを使用できるようにURLをどのようにエンコードするのですか?どうもありがとう。
私にそれを打つ:) –
ありがとう、それははるかに理にかなっています! – soulprovidr