enter image description here

Is it possible to open with python or javascript if so, how do I access the file and find the data I want.

1

There are 1 best solutions below

0
On

You just do it, line by line.

import json
data = []
for line in open('ndjson.json'):
    data.append( json.loads(line) )