Simpan daftar kamus ke json python

import json
with open('outputfile', 'w') as fout:
    json.dump(your_list_of_dict, fout)
Angry Antelope