Files
insomnia/packages/insomnia-httpsnippet/test/fixtures/output/python/python3/headers.py
2018-03-26 13:50:43 -07:00

16 lines
260 B
Python
Executable File

import http.client
conn = http.client.HTTPConnection("mockbin.com")
headers = {
'accept': "application/json",
'x-foo': "Bar"
}
conn.request("GET", "/har", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))