The following snippet opens a JSON encoded file (replace filename with the actual name of the file) and returns the object that is stored in the file.
filename
import json with open(filename, 'r') as f: d = json.load(f)