print local json file python code example
Example 1: python json dump to file
import json
with open('data.json', 'w') as f:
json.dump(data, f)
Example 2: load json
import json
with open('data.txt') as json_file:
data = json.load(json_file)