使用 Python 通过 HTTP 下载压缩内容

发布于 2024-08-02 19:49:03 字数 258 浏览 3 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠北森屋 2024-08-09 19:49:03

httplib2 支持“deflate”和“gzip”压缩。

示例

import httplib2
h = httplib2.Http(".cache")
resp, content = h.request("http://example.org/", "GET")

根据需要对内容进行解压缩。

httplib2 supports 'deflate' and 'gzip' compression.

Example

import httplib2
h = httplib2.Http(".cache")
resp, content = h.request("http://example.org/", "GET")

The content is decompressed as necessary.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文