Answers for "python requests send response"

9

how to send get request python

import requests
requests.get("https://www.google.com/")
Posted by: Guest on January-05-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

Code answers related to "python requests send response"

Python Answers by Framework

Browse Popular Code Answers by Language