mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 23:28:33 -04:00
13 lines
200 B
Python
Executable File
13 lines
200 B
Python
Executable File
import requests
|
|
|
|
url = "http://mockbin.com/har"
|
|
|
|
headers = {
|
|
'accept': "application/json",
|
|
'x-foo': "Bar"
|
|
}
|
|
|
|
response = requests.request("GET", url, headers=headers)
|
|
|
|
print(response.text)
|