I have a code where in a loop I would call many requests for web scraping
import requests
requests = requests.Session()
for x in range(0,5):
cookies = {
'key': 'iteration: '+ str(x)
}
response = requests.get('A site', cookies=cookies).text
response = requests.get('A site/proxies', cookies=cookies).text
print(requests.cookies)
I have tried this but the cookies are not showing up