Is it possible to open with python or javascript if so, how do I access the file and find the data I want.
Asked
Active
Viewed 45 times
1 Answers
0
You just do it, line by line.
import json
data = []
for line in open('ndjson.json'):
data.append( json.loads(line) )

Tim Roberts
- 48,973
- 4
- 21
- 30