mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 23:28:33 -04:00
11 lines
176 B
Python
Executable File
11 lines
176 B
Python
Executable File
import http.client
|
|
|
|
conn = http.client.HTTPConnection("mockbin.com")
|
|
|
|
conn.request("PROPFIND", "/har")
|
|
|
|
res = conn.getresponse()
|
|
data = res.read()
|
|
|
|
print(data.decode("utf-8"))
|