headers in python requests code example
Example 1: python requests header
url = 'https://api.github.com/some/endpoint'
headers = {'user-agent': 'my-app/0.0.1'}
r = requests.get(url, headers=headers)
Example 2: python send get request with headers
r=requests.get("http://www.example.com/", headers={"content-type":"text"})
Example 3: python requests get
# pip install requests
import requests
req = requests.get('<url here>', 'html.parser')
print(req.text)
Example 4: python requests exceptions
try:
r = requests.get(url, params={'s': thing})
except requests.exceptions.RequestException as e: # This is the correct syntax
raise SystemExit(e)
Example 5: how do you set headers in python get requests
b'{\n "cookies": {\n "cookie1": "value1"\n }\n}\n'