vote up 0 vote down star

Is there a way to print the cookies stored in a cookielib.CookieJar in a human-readable way?

I'm scraping a site and I'd like to know if the same cookies are set when I use my script as when I use the browser.

flag

80% accept rate

1 Answer

vote up 1 vote down check
import urllib2
from cookielib import CookieJar, DefaultCookiePolicy
policy = DefaultCookiePolicy(
rfc2965=True, strict_ns_domain=DefaultCookiePolicy.DomainStrict)
cj = CookieJar(policy)
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
r = opener.open("http://somewebsite.com")

[str(i) for i in cj]

Produces:

['<Cookie JSESSIONID=BE71BFC3EE6D9799DEBD939A7487BB08 for somewebsite.com>']
link|flag
Ah, too obvious.. It didn't occur to me that the CookieJar was iterable. – Pär Bohrarper Aug 20 at 13:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.