Skip to content

Instantly share code, notes, and snippets.

@mollyporph
Last active August 29, 2015 14:28
Show Gist options
  • Save mollyporph/ee3e48578d8849bc6ec6 to your computer and use it in GitHub Desktop.
Save mollyporph/ee3e48578d8849bc6ec6 to your computer and use it in GitHub Desktop.
import requests
url = 'http://somedomain'
basic = ('basic-un','basic-pw')
payload = {'someVar' : 'someVal'}
customHeaders = {'content-type': 'application/json'}
result = requests.post(url,auth=basic,data=payload,headers=customHeaders)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment