Python - Mechanize:为什么需要 CookieJar?
在 mechanize 中,我们有:
方法: set_cookiejar()
但是,当我们说 mechanize 具有自动 cookie 处理功能时,为什么我们仍然需要 cookie jar 呢?
请帮忙!
In mechanize, we have :
method : set_cookiejar()
But, why do we need a cookie jar anyway, when we say that mechanize has automatic cookie handling ?
Please help !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要一个 - 如果您不指定一个,Mechanize 将直接处理它。您可能想要使用已经存储在 jar 中的 cookie,或者将 cookie 保存在 jar 中以便与其他脚本一起使用,因此 Mechanize 允许您指定一个。
You don't need one -- if you don't specify one, Mechanize will just handle it. You might want to use cookies you have already stored in a jar, or save cookies in a jar for use with other scripts, so Mechanize lets you specify one.