Skip to content

Requests

sjherrick edited this page Mar 10, 2021 · 4 revisions

Requests Cheat Sheet

POST

verify: True by default, set to False to ignore SSL

data = requests.post(url=url, auth=(username, password), json=payload, verify=False)
result = data.json()
Clone this wiki locally