mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 23:28:33 -04:00
11 lines
209 B
Python
Executable File
11 lines
209 B
Python
Executable File
import requests
|
|
|
|
url = "http://mockbin.com/har"
|
|
|
|
payload = "Hello World"
|
|
headers = {'content-type': 'text/plain'}
|
|
|
|
response = requests.request("POST", url, data=payload, headers=headers)
|
|
|
|
print(response.text)
|