I have a file that contains an array of JSON objects. The file is over 1GB, so I can't load it into memory all at once. I need to parse each of the individual objects. I tried using ijson
, but that will load the entire array as one object, effectively doing the same thing as a simple json.load()
would.
Is there another way how to do it?
Edit: Nevermind, just use ijson.items()
and set the prefix parameter to "item"
.