11

我正在学习如何使用mechanize,一个 Python 模块来自动与网站交互。

一项功能是自动处理 cookie。我想从mechanize.Browser实例中转储 cookie 以进行调试,但我自己似乎无法弄清楚这一点。

4

3 回答 3

22

>>> from mechanize import Browser
>>> b = Browser()
>>> b._ua_handlers['_cookies'].cookiejar
mechanize._clientcookie.CookieJar[]
>>> b.open('http://google.com')
response_seek_wrapper at 0xb7a922ccL whose wrapped object = closeable_response at 0xb7aa070cL whose fp = socket._fileobject object at 0xb7a94224
>>>
>>> b._ua_handlers['_cookies'].cookiejar
mechanize._clientcookie.CookieJar[Cookie(version=0, name='PREF', value='ID=57d545c229b4cf3f:TM=1236081634:LM=1236081634:S=p001WJMOr-V8Rlvi', port=None, port_specified=False, domain='.google.com', domain_specified=True, domain_initial_dot=True, path='/', path_specified=True, secure=False, expires=1299153634, discard=False, comment=None, comment_url=None, rest={}, rfc2109=False), Cookie(version=0, name='PREF', value='ID=20534d80a5ccf2ea:TM=1236081635:LM=1236081635:S=jW3UotZ0dg8sv6mf', port=None, port_specified=False, domain='.google.com.ua', domain_specified=True, domain_initial_dot=True, path='/', path_specified=True, secure=False, expires=1299153635, discard=False, comment=None, comment_url=None, rest={}, rfc2109=False)]
>>>                           

于 2009-03-03T12:02:03.117 回答
4

只需打印 CookieJar 实例

# Browser
br = mechanize.Browser()

# Cookie Jar
cj = cookielib.LWPCookieJar()
br.set_cookiejar(cj)

# Dump
print cj
于 2014-12-23T18:43:59.250 回答
1

Mykolas 的回答几乎给了我我想要的东西。我正在寻找如何将 cookie 保存到文件中。由于这个答案为将 cookie 转储到文件中提供了余地,因此它可能对其他来这里寻找它的人有用。要将 cookie 保存到文件中:

br._ua_handlers['_cookies'].cookiejar.save("cookie.txt", ignore_discard=True, ignore_expires=True)
于 2014-01-26T22:18:25.097 回答