使用 Python 通过 HTTP 下载压缩内容
使用 Python 下载网页时如何利用 HTTP 1.1 的压缩功能?
我目前正在使用内置的 urllib 模块下载网页内容。通读文档,我找不到任何确实使用压缩的信息。
它是否已内置到 urllib 中,或者是否还有其他我可以使用的库?
How do I take advantage of HTTP 1.1's compression when downloading web pages using Python?
I am currently using the built-in urllib module for downloading web content. Reading through the documentation I couldn't find any information that is indeed using compression.
Is it already built-in into urllib or is there another library that I can use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
httplib2 支持“deflate”和“gzip”压缩。
示例
根据需要对内容进行解压缩。
httplib2 supports 'deflate' and 'gzip' compression.
Example
The content is decompressed as necessary.