python json file format code example
Example 1: open json file python
import json
with open('data.txt') as json_file:
data = json.load(json_file)
Example 2: save json file python
with open('data.txt', 'w') as outfile:
json.dump(data, outfile)