Сохранить список словарей в JSON Python
import json
with open('outputfile', 'w') as fout:
json.dump(your_list_of_dict, fout)
Angry Antelope
import json
with open('outputfile', 'w') as fout:
json.dump(your_list_of_dict, fout)