mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 23:28:33 -04:00
8 lines
116 B
Python
Executable File
8 lines
116 B
Python
Executable File
import requests
|
|
|
|
url = "http://mockbin.com/har"
|
|
|
|
response = requests.request("PROPFIND", url)
|
|
|
|
print(response.text)
|