[2.5.1/cookielib] How to display specific cookie?
Gilles Ganault
nospam at nospam.com
Wed Apr 7 12:56:08 EDT 2010
Hello
I'm using ActivePython 2.5.1 and the cookielib package to retrieve web
pages.
I'd like to display a given cookie from the cookiejar instead of the
whole thing:
========
#OK
for index, cookie in enumerate(cj):
print index, ' : ', cookie
#How to display just PHPSESSID?
#AttributeError: CookieJar instance has no attribute '__getitem__'
print "PHPSESSID: %s" % cj['PHPSESSID']
========
I'm sure it's very simple but googling for this didn't return samples.
Thank you.
More information about the Python-list
mailing list