Answers for "python should i put requests in a function"

19

get requests from python

import requests

response = requests.get('<api-endpoint>')
response.raise_for_status()

data = response.json()
print(data)
Posted by: Guest on March-24-2021

Code answers related to "python should i put requests in a function"

Browse Popular Code Answers by Language