I am trying to read in data from nyc opendata and it has about 25million records.
def JSON_to_DF(json_file):
json_data = requests.get(json_file)
text_data = json.loads(json_data.text)
pd_data = pd.DataFrame(text_data)
return pd_data
data= JSON_to_DF('https://data.cityofnewyork.us/resource/erm2-nwe9.json')
i used the limit feature but i cant seem to go over 100,000 records.
data= JSON_to_DF('https://data.cityofnewyork.us/resource/erm2-nwe9.json?$limit=100000')
How do i get this done?