mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 23:28:33 -04:00
10 lines
194 B
Python
Executable File
10 lines
194 B
Python
Executable File
import requests
|
|
|
|
url = "http://mockbin.com/har"
|
|
|
|
querystring = {"foo":["bar","baz"],"baz":"abc","key":"value"}
|
|
|
|
response = requests.request("GET", url, params=querystring)
|
|
|
|
print(response.text)
|