スタックオーバーフローから質問を取得するプログラムに取り組んでいます。昨日までプログラムは正常に機能していましたが、今日からエラーが発生しています
"Message File Name Line Position
Traceback
<module> C:\Users\DPT\Desktop\questions.py 13
UnicodeEncodeError: 'ascii' codec can't encode character u'\u201c' in position 34: ordinal not in range(128)"
現在、質問が表示されていますが、出力を新しいテキストファイルにコピーできないようです。
import sys
sys.path.append('.')
import stackexchange
so = stackexchange.Site(stackexchange.StackOverflow)
term= raw_input("Enter the keyword for Stack Exchange")
print 'Searching for %s...' % term,
sys.stdout.flush()
qs = so.search(intitle=term)
print '\r--- questions with "%s" in title ---' % (term)
for q in qs:
print '%8d %s' % (q.id, q.title)
with open('E:\questi.txt', 'a+') as question:
question.write(q.title)
time.sleep(10)
with open('E:\questi.txt') as intxt:
data = intxt.read()
regular = re.findall('[aA-zZ]+', data)
print(regular)
tokens = set(regular)
with open('D:\Dictionary.txt', 'r') as keywords:
keyset = set(keywords.read().split())
with open('D:\Questionmatches.txt', 'w') as matches:
for Word in keyset:
if Word in tokens:
matches.write(Word + '\n')
q.title
はUnicode文字列です。それをファイルに書き込むときは、最初にエンコードする必要があります。できれば、UTF-8
(そうしない場合、PythonはデフォルトでASCII
コーデックを使用します。これは127
)。
question.write(q.title.encode("utf-8"))
問題を修正する必要があります。
ところで、プログラムは文字“
(U+201C
)。
Transifex APIを使用してこれに遭遇しました
_response['source_string']
_
UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019' in position 3: ordinal not in range(128)
response['source_string'].encode("utf-8")
で修正
_import requests
username = "api"
password = "PASSWORD"
AUTH = (username, password)
url = 'https://www.transifex.com/api/2/project/project-site/resource/name-of-resource/translation/en/strings/?details'
response = requests.get(url, auth=AUTH).json()
print response['key'], response['context']
print response['source_string'].encode("utf-8")
_