gpt4 book ai didi

python - 我如何设置标题以防止站点发送 gzip 编码的响应

转载 作者:太空宇宙 更新时间:2023-11-04 06:24:44 24 4
gpt4 key购买 nike

我正在使用 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

现在可以了

最佳答案

Accept header 设置为您要接受的 MIME 类型。

Accept: text/plain

如果你喜欢这个:)

关于python - 我如何设置标题以防止站点发送 gzip 编码的响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9111736/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com