-1

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.

Hamsu
  • 11

1 Answers1

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