using json to read in json file in python code example
Example: python read json
import json
with open('path_to_file/person.json') as f:
data = json.load(f)
import json
with open('path_to_file/person.json') as f:
data = json.load(f)