How do I add a header to urllib2 opener?(如何向 urllib2 开启程序添加标题?)
问题描述
cj = cookielib.CookieJar()opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))opener.open('http://abc.com')opener.open('http://google.com')
如您所见,我使用 opener 访问不同的网站,使用 cookie jar.我可以设置一个标头,以便每次访问网站时都应用标头吗?
你可以直接将headers添加到build_opener
返回的OpenerDirector
对象.从 urllib2 docs 中的最后一个示例:
OpenerDirector 会自动为每个请求添加一个 User-Agent 标头.要改变这一点:
导入urllib2opener = urllib2.build_opener()opener.addheaders = [('用户代理', 'Mozilla/5.0')]opener.open('http://www.example.com/')
<块引用>
另外,请记住,在将请求传递给 urlopen()(或 OpenerDirector.open())时会添加一些标准标头(Content-Length、Content-Type 和 Host).
cj = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
opener.open('http://abc.com')
opener.open('http://google.com')
As you can see, I use opener to visit different websites, using a cookie jar. Can I set a header so that each time a website is it, the header is applied?
You can add the headers directly to the OpenerDirector
object returned by build_opener
. From the last example in the urllib2 docs:
OpenerDirector automatically adds a User-Agent header to every Request. To change this:
import urllib2
opener = urllib2.build_opener()
opener.addheaders = [('User-agent', 'Mozilla/5.0')]
opener.open('http://www.example.com/')
Also, remember that a few standard headers (Content-Length, Content-Type and Host) are added when the Request is passed to urlopen() (or OpenerDirector.open()).
这篇关于如何向 urllib2 开启程序添加标题?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何向 urllib2 开启程序添加标题?


- padding='same' 转换为 PyTorch padding=# 2022-01-01
- python check_output 失败,退出状态为 1,但 Popen 适用于相同的命令 2022-01-01
- 如何在 python3 中将 OrderedDict 转换为常规字典 2022-01-01
- pytorch 中的自适应池是如何工作的? 2022-07-12
- 分析异常:路径不存在:dbfs:/databricks/python/lib/python3.7/site-packages/sampleFolder/data; 2022-01-01
- 如何在 Python 的元组列表中对每个元组中的第一个值求和? 2022-01-01
- python-m http.server 443--使用SSL? 2022-01-01
- 沿轴计算直方图 2022-01-01
- 使用Heroku上托管的Selenium登录Instagram时,找不到元素';用户名'; 2022-01-01
- 如何将一个类的函数分成多个文件? 2022-01-01