Accessing APIs
I have noticed an increase in questions where you are required to access an API. The following is a quick primer on how API access works in Python
To make an API request, use the requests
library, which you need to import first:
Then, to make a GET
request, use requests.get(URL)
. This returns a Response
object that you can use to extract information from the API:
To upload data via a POST
request, use requests.post(URL, json=JSON)
Last updated