import json
with open('jsonfile.json') as f:
data = json.load(f)
import json
with open(filename, 'r') as f:
data = json.load(f) # with 4 spaces insted of tab
with open(source_file) as source:
json_source = source.read()
data = json.loads('[{}]'.format(json_source))