我正在使用 ActivePython 2.5.1 和 cookielib 包来检索网页。
我想显示来自 cookiejar 的给定 cookie 而不是整个内容:
#OK to display all the cookies
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']
我敢肯定这很简单,但谷歌搜索并没有返回样本。
谢谢你。