I am unable to get cookies from the below code.
I tried a different scraper but no progress.
Is there anyone with an idea on how to achieve it?
import requests
session = requests.Session()
print(session.cookies.get_dict())
response = session.get('https://example.com')
print(session.cookies.get_dict())
Any suggestions is appreciated with any method.
Thanks