requests.post set headers python code example
Example: requests post with headers python
import json
askme = requests.post(url="url", data=json.dumps(data), headers=headers)
import json
askme = requests.post(url="url", data=json.dumps(data), headers=headers)