I am trying to load and parse a JSON file in Python. But I\'m stuck trying to load the file:
import json json_data = open(\'file\') data = json.load(json_dat
for those stumbling upon this question: the python jsonlines library (much younger than this question) elegantly handles files with one json document per line. see https://jsonlines.readthedocs.io/
jsonlines