socrata / discuss

Discuss all the things!
https://dev.socrata.com
Apache License 2.0
10 stars 3 forks source link

[data.cityofchicago.org/ijzp-q8t2] Question about "Crimes - 2001 to present" #45

Open msheanimate opened 7 years ago

msheanimate commented 7 years ago

API Docs: https://dev.socrata.com/foundry/data.cityofchicago.org/ijzp-q8t2

I am trying to access all data from 2001 to present but its only returning 1000 records from 2017

nhaksar commented 4 years ago

Hi - not sure if you're having this issue still. If you are, could you give some more specifics on how exactly you're accessing the data? I presume you're making an API call: have you specified a limit as to the number of records to pull?

For example, if I were pulling data with Python, I'd do something like

results = client.get("ijzp-q8t2", limit=2000)

where limit is the number of records to pull.

nhaksar commented 4 years ago

I just tried pulling data without specifying the number of records: if you do that, it pulls the last 1,000 by default. Try specifying the number of records you're interested in.