You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi so may i ask how do you traverse through the cookies retrieved by this code and also i read that this creates a temp file to avoid lockout. where is this file so i can check if it is already deleted after i get my the things i want in my cookies
I just want to be able to get the 2 things inside the cookie but unsure what is best way to do this
The text was updated successfully, but these errors were encountered:
try:
cookies = browser_cookie3.chromium(domain_name='xxx.com')
for cookie in cookies:
if cookie.name == 'xxxx':
print(cookies) # the full cookie
print("\n" + cookie.value) # whatever is under xxxx
except:
pass
that's what I use <3
sorry that it took 8 months for someone to finally respond to you xd
hi so may i ask how do you traverse through the cookies retrieved by this code and also i read that this creates a temp file to avoid lockout. where is this file so i can check if it is already deleted after i get my the things i want in my cookies
I just want to be able to get the 2 things inside the cookie but unsure what is best way to do this
The text was updated successfully, but these errors were encountered: