Skip to content

Instantly share code, notes, and snippets.

@jacobian
Created December 18, 2012 14:45
Show Gist options
  • Save jacobian/4328596 to your computer and use it in GitHub Desktop.
Save jacobian/4328596 to your computer and use it in GitHub Desktop.
def session(**kwargs):
s = requests.session()
for k,v in kwargs.items():
setattr(s, k, v)
return s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment