Mashape/httpsnippet

View on GitHub
src/targets/python/requests/fixtures/nested.py

Summary

Maintainability
A
1 hr
Test Coverage
import requests

url = "http://mockbin.com/har"

querystring = {"foo[bar]":"baz,zap","fiz":"buz","key":"value"}

response = requests.get(url, params=querystring)

print(response.json())