我正在使用 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
现在它正在工作