Python Forum

Full Version: python scraping all cookies
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
iam trying to post some data to api. but after 3-4 posting, website blocking me and it says you dont have to permission to access. i have a cookies sections on my codes. when i changed these cookies section manually i can post some data again. but i have to change cookies automatically.

iam using these codes to get cookies but its just parsing a little bit of cookies. i wanna parse all of them.

session = requests.Session()
response = session.get(url)
cookiess = session.cookies.get_dict()
website url which im trying to get cookies = https://www.dell.com/support/orders/us/e...rns?lwp=rt

iam right clicking on webpage, then click inspect, then go to network section and iam choosing my url. there is a "cookie" section under "request headers". i wanna parse here.

i want to parse these section. https://i.ibb.co/gzGVZYG/asd.png
bump problem didnt solve yet