Utilizzare l' ensure_ascii=False
opzione per json.dumps()
, quindi codificare manualmente il valore in 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())
"ברי צקלה"
Se stai scrivendo su un file, usa json.dump()
e lascialo nell'oggetto file per codificare:
with open('filename', 'w', encoding='utf8') as json_file:
json.dump("ברי צקלה", json_file, ensure_ascii=False)
Avvertenze per Python 2
Per Python 2, ci sono alcuni avvertimenti da tenere in considerazione. Se stai scrivendo questo in un file, puoi usare io.open()
invece di open()
produrre un oggetto file che codifica i valori Unicode per te mentre scrivi, quindi usa json.dump()
invece per scrivere su quel file:
with io.open('filename', 'w', encoding='utf8') as json_file:
json.dump(u"ברי צקלה", json_file, ensure_ascii=False)
Nota che c'è un bug nel json
modulo in cui il ensure_ascii=False
flag può produrre un mix di unicode
e str
oggetti. La soluzione alternativa per Python 2 è quindi:
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))
In Python 2, quando si utilizzano stringhe di byte (tipo str
), codificate in UTF-8, assicurarsi di impostare anche la encoding
parola chiave:
>>> 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']
ברי צקלה