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