I have a huge JSON file in the list form
{data 1}
{data 2}
{data 3}
...
I don't want to load the whole file but only each part one by one to parse, i.e. I first want to parse data1, then data2, ...
I know json.loads()
in Python 3 but it seems to me that it needs an entire JSON string from the file.