I am trying to load and parse a JSON file in python. Although I'm stuck trying to load the file:
import json
json_data = open('file')
data = json.load(json_data)
Yields:
ValueError: Extra data: line 2 column 1 - line 225116 column 1 (char 232 - 160128774)
I looked at http://docs.python.org/library/json.html but it's pretty discouraging to read through this horrible looking documentation.