Answers for "request headers python"

7

python requests header

url = 'https://api.github.com/some/endpoint'
headers = {'user-agent': 'my-app/0.0.1'}
r = requests.get(url, headers=headers)
Posted by: Guest on September-27-2020
0

python get response headers

import requests

url = "https://www.google.com"
response = requests.head(url)
print(response.headers) # prints the entire header as a dictionary
print(response.headers["Content-Length"]) # prints a specific section of the dictionary
Posted by: Guest on July-21-2021
0

python send get request with headers

r=requests.get("http://www.example.com/", headers={"content-type":"text"})
Posted by: Guest on November-16-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

Python Answers by Framework

Browse Popular Code Answers by Language