request post headers python code example
Example 1: requests post with headers python
import json
askme = requests.post(url="url", data=json.dumps(data), headers=headers)
Example 2: python send get request with headers
r=requests.get("http://www.example.com/", headers={"content-type":"text"})