how to update json file with python save dict code example
Example: save a dict to json python
import json
with open('data.json', 'w') as fp:
json.dump(data, fp)
import json
with open('data.json', 'w') as fp:
json.dump(data, fp)