So schreiben Sie in UFT-8 in Write JSON-Datei Python
with open("example.json","w", encoding='utf-8') as jsonfile:
json.dump(data,jsonfile,ensure_ascii=False)
Ill Ibex