I have a JSON file named debug.json that I created in Python3.3 that looks like this:
{"TIME": 55.55, "ID":155,"DATA": [17,22,33,44,55]}{"TIME": 56.55, "ID":195,"DATA": [17,22,ff,44,55]}
I'm trying to load it with the following code:
import json
with open("debug.json",'r',encoding='utf-8') as f:
testing = json.loads(f.read())
However when I try this I get the following error:
ValueError: Extra data line 1 column 92
This is where the second JSON object starts in the text file...I'm guessing that I am missing something pretty trivial here but I haven't found any examples that relate to my problem. Any help is appreciated!