我使用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
现在正在运作
答案 0 :(得分:1)
将Accept
标题设置为您要接受的mime类型。
Accept: text/plain
如果你喜欢这个:)