Answers for "handle 404 in requests python"

0

handle 404 in requests python

>>> # Here's what you should do if you want the status_code of a request.
>>> import requests
>>> r = requests.get('http://httpbin.org/status/404')
>>> r.status_code
404
Posted by: Guest on August-31-2020

Python Answers by Framework

Browse Popular Code Answers by Language