2
我正在使用ActivePython 2.5.1和cookielib包來檢索網頁。如何顯示特定的cookie?
我想從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']
我敢肯定,這很簡單,但google搜索這沒有返回樣本。
謝謝。
感謝您的提示。 – Gulbahar 2010-04-15 15:34:35