在浏览器请求下面的 python 代码从网页提供某些东西并且 python 程序应该能够设置主机网站发出的所有 cookie 的情况下,如何使用 urllib3 来做同样的事情。urllib3 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")