I want to send the same header parameter twice with python requests. is it possible?
When I try to do the following request, the Requests lib from python ignores one of the passed headers even sending it with different cases:
Example:
import requests
url = "http://www.example.com"
headers = {"test":"test1",
"Test":"test2"}
req = requests.get(url, headers=headers)
print(req.request.headers)