read json and save to dict python 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: create dict from json file python
import json
with open("data.json", "r") as json_file:
my_dict = json.load(json_file)