urllib3将cookie设置到浏览器上

时间:2015-02-25 08:29:19

标签: python urllib3

在浏览器请求以下python代码从网页提供内容并且python程序应该能够设置主机网站发布的所有cookie的情况下,如何使用urllib3执行相同的操作。 urlib3 lib也是正确的方法吗?

最终目标是必须在浏览器中设置cookie,由主机站点

发布
#!/usr/bin/python
import urllib3
http_pool = urllib3.connection_from_url("http://example.com")
r = http_pool.get_url("http://example.org/", headers="set the cookie as issued by the host site")

0 个答案:

没有答案