Advertisement
skip420

cookiefinder

Aug 30th, 2021
1,023
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. # import the requests library
  2. import requests
  3.  
  4. # initialize a session
  5. session = requests.Session()
  6.  
  7. # send a get request to the server
  8. response = session.get('https://www.tastefullysimple.com/')
  9.  
  10. # print the response dictionary
  11. print(session.cookies.get_dict())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement