如何设置阻止网站发送gzip编码响应的标头

时间:2012-02-02 11:42:39

标签: python http-headers gzip urlopen

我使用python urllib2.urlopen获取html内容,我得到了一个gziped响应。
我可以设置标题所以我会得到它没有压缩?

我的代码

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

现在正在运作

1 个答案:

答案 0 :(得分:1)

Accept标题设置为您要接受的mime类型。

Accept: text/plain

如果你喜欢这个:)