Answers for "response code requests python"

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
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
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 "response code requests python"

Browse Popular Code Answers by Language