Scarygami / location-history-json-converter

Convert the Location History JSON File from Google Takeout into a useable format
Apache License 2.0
468 stars 117 forks source link

Streaming parsing #16

Closed karlicoss closed 4 years ago

karlicoss commented 6 years ago

If the input json file is huge it ends up loaded fully in RAM (due to json.loads method), for many cases some sort of streaming, iterative parsing would be enough.

Scarygami commented 4 years ago

Streaming parsing (--iterative) is now possible. The functionality requires ijson to be installed.