python read json to dict code example
Example 1: save a dict to json python
import json
with open('data.json', 'w') as fp:
json.dump(data, fp)
Example 2: convert dict to json python
import json
with open('result.json', 'w') as fp:
json.dump(sample, fp)