Écrivez un dict au fichier JSON avec des caractères spéciaux

with open(filename, 'w', encoding='utf-8') as file:
    json.dump(data, file, ensure_ascii=False)
Lazy Lizard