ensure_ascii=False
スイッチをjson.dumps()
に使用し、値を手動でUTF-8にエンコードします。
>>> json_string = json.dumps("ברי צקלה", ensure_ascii=False).encode('utf8')
>>> json_string
b'"\xd7\x91\xd7\xa8\xd7\x99 \xd7\xa6\xd7\xa7\xd7\x9c\xd7\x94"'
>>> print(json_string.decode())
"ברי צקלה"
ファイルに書き込む場合はjson.dump()
、次のコードを使用してファイルオブジェクトに任せます。
with open('filename', 'w', encoding='utf8') as json_file:
json.dump("ברי צקלה", json_file, ensure_ascii=False)
Python 2に関する警告
Python 2の場合、考慮すべきいくつかの注意事項があります。これをファイルに書き込む場合は、io.open()
ではなくを使用open()
して、書き込み時にUnicode値をエンコードするファイルオブジェクトを生成し、json.dump()
代わりにを使用してそのファイルに書き込むことができます。
with io.open('filename', 'w', encoding='utf8') as json_file:
json.dump(u"ברי צקלה", json_file, ensure_ascii=False)
フラグがとオブジェクトの混合を生成する可能性があるjson
モジュールにバグがあることに注意してください。Python 2の回避策は次のとおりです。ensure_ascii=False
unicode
str
with io.open('filename', 'w', encoding='utf8') as json_file:
data = json.dumps(u"ברי צקלה", ensure_ascii=False)
# unicode(data) auto-decodes data to unicode if str
json_file.write(unicode(data))
Python 2で、str
UTF-8にエンコードされたバイト文字列(タイプ)を使用する場合は、encoding
キーワードも設定してください。
>>> d={ 1: "ברי צקלה", 2: u"ברי צקלה" }
>>> d
{1: '\xd7\x91\xd7\xa8\xd7\x99 \xd7\xa6\xd7\xa7\xd7\x9c\xd7\x94', 2: u'\u05d1\u05e8\u05d9 \u05e6\u05e7\u05dc\u05d4'}
>>> s=json.dumps(d, ensure_ascii=False, encoding='utf8')
>>> s
u'{"1": "\u05d1\u05e8\u05d9 \u05e6\u05e7\u05dc\u05d4", "2": "\u05d1\u05e8\u05d9 \u05e6\u05e7\u05dc\u05d4"}'
>>> json.loads(s)['1']
u'\u05d1\u05e8\u05d9 \u05e6\u05e7\u05dc\u05d4'
>>> json.loads(s)['2']
u'\u05d1\u05e8\u05d9 \u05e6\u05e7\u05dc\u05d4'
>>> print json.loads(s)['1']
ברי צקלה
>>> print json.loads(s)['2']
ברי צקלה