Skip to content

Instantly share code, notes, and snippets.

@WillianFuks
Created June 30, 2021 01:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WillianFuks/5fdea58e95562cbe4ee3665d2ae61034 to your computer and use it in GitHub Desktop.
Save WillianFuks/5fdea58e95562cbe4ee3665d2ae61034 to your computer and use it in GitHub Desktop.
import requests
sess = requests.Session()
sess.verify = False # For testing locally
sess.post('https://localhost:8002/login/',
data={'username': 'alice', 'password': 'pass'})
sess.headers.update({'X-CSRFToken': sess.cookies['csrftoken']})
r = sess.get('https://localhost:8002/protect/')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment