Hi Rij,
I would approach it like this (though there might be alternative routes to the same results):
First: Where is the data?
To get access data from a particular dataset/endpoint, you can “generate” thus:
3. Fetch the data from the API
Now, in your Python program/Django models or views modules, do:
import requests
response = requests.get(url)
4. Use the data as you see fit. The “response” object you (successfully) get from the line above contains all the data you need from the dataset you chose. See the Python-Requests docs
for all the ways to extract that data. And, then pass that data onto whatever other program, package or module you want to use to analyze or graph the response data. Also see the data portal for all the ways you can interact with their API.
I hope this helps. All the best.
Sincerely,
Muhammad