Answers for "use of headers in http request 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

Code answers related to "use of headers in http request python"

Python Answers by Framework

Browse Popular Code Answers by Language