disable json dumps encode

Solutions on MaxInterview for disable json dumps encode by the best coders in the world

showing results for - "disable json dumps encode"
Cletus
18 Jun 2016
1# ensure_ascii=False
2with open('filename', 'w', encoding='utf8') as json_file:
3    json.dump("ברי צקלה", json_file, ensure_ascii=False)
4