mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 23:28:33 -04:00
10 lines
171 B
Python
Executable File
10 lines
171 B
Python
Executable File
import requests
|
|
|
|
url = "http://mockbin.com/har"
|
|
|
|
headers = {'cookie': 'foo=bar; bar=baz'}
|
|
|
|
response = requests.request("POST", url, headers=headers)
|
|
|
|
print(response.text)
|