Answers for "python requests.get response"

1

how to get response code from requests python

import requests
requests.get('https://www.google.com')

if res.status_code == 200:

	print('successful')

else:

    print('faild')


# Informational responses (100–199)
# Successful responses (200–299)
# Redirects (300–399)
# Client errors (400–499)
# Server errors (500–599)
Posted by: Guest on August-07-2021
17

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 requests.get response"

Browse Popular Code Answers by Language