如何设置标头以防止网站发送 gzip 编码响应
我正在使用 python urllib2.urlopen 来获取 html 内容,并且我得到了 gzip 压缩的响应。
我可以设置标题,这样我就不会压缩它吗?
我的代码
response = urlopen(url,None , TIMEOUT)
html = response.read() # read html
print html
如 Tichodroma 建议我尝试一下
request = Request(url)
request.add_header('Accept-encoding', 'text/plain')
response = urlopen(request,None , TIMEOUT)
html = response.read().lower() # read html
print html
,现在它正在工作
i am using python urllib2.urlopen to get html content and i am getting a gziped response.
can i set the headers so i will get it not zipped ?
my code
response = urlopen(url,None , TIMEOUT)
html = response.read() # read html
print html
as Tichodroma suggested i try this
request = Request(url)
request.add_header('Accept-encoding', 'text/plain')
response = urlopen(request,None , TIMEOUT)
html = response.read().lower() # read html
print html
now it is working
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
Accept
标头设置为您要接受的 MIME 类型。如果你喜欢这个:)
Set the
Accept
header to the mime types you want to accept.if you like this :)