mirror of
https://github.com/bvanroll/startrek-ml.git
synced 2025-08-28 11:32:43 +00:00
11 lines
210 B
Python
11 lines
210 B
Python
import numpy as np
|
|
import pandas as pd
|
|
import ijson
|
|
|
|
filename = "OUTPUTFILE.json"
|
|
with open(filename, 'r') as f:
|
|
objects = ijson.items(f, 'Episodes.Scenes.item')
|
|
columns = list(objects)
|
|
|
|
print(columns)
|