Answers for "python requests check status code"

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
1

create a response object in python

from requests.models import Response

the_response = Response()
the_response.code = "expired"
the_response.error_type = "expired"
the_response.status_code = 400
the_response._content = b'{ "key" : "a" }'

print(the_response.json())
Posted by: Guest on June-09-2020
6

python print return code of requests

>>> import requests
>>> r = requests.get('http://httpbin.org/status/404')
>>> r.status_code
404
Posted by: Guest on June-15-2020
1

raise_for_status() requests

Raise an exception if a request is unsuccessful

import requests
url = "http://mock.kite.com/status/404"
r = requests.get(url)
try: 
    r.raise_for_status()
except requests.exceptions.HTTPError as e: 
    print e
OUTPUT
404 Client Error: NOT FOUND
Posted by: Guest on April-08-2020
0

how to get requests response code with python

import urllib.request
import time
def result_from_site(url_of_site):
    weburl = urllib.request.urlopen(url_of_site)
    return str(weburl.getcode())
print(result_from_site("https://www.linkedin.com/learning/learning-python/fetching-internet-data"))
Posted by: Guest on October-06-2021

Code answers related to "python requests check status code"

Browse Popular Code Answers by Language