requests.post headers 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: requests post with headers python
import json
askme = requests.post(url="url", data=json.dumps(data), headers=headers)