如何在twisted中创建部分下载?

发布于 2024-09-11 03:37:48 字数 56 浏览 2 评论 0原文

如何创建多个异步部分下载的 HTTPDownloader 实例?所有下载完成后它会自动组装文件吗?

How do you create multiple HTTPDownloader instance with partial download asynchronously? and does it assemble the file automatically after all download is done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

oО清风挽发oО 2024-09-18 03:37:48

您必须使用 Range HTTP 标头:

范围。仅请求实体的一部分。
字节从0开始编号。范围:
字节=500-999

即。如果您想分 4 部分下载 1000 个文件,您将开始 4 次下载:

  1. 0-2499
  2. 2500-4999
  3. 5000-7499
  4. 7500-9999

然后只需加入响应中的数据即可。

要检查文件大小,您可以使用 HEAD 方法:

HEAD 要求相同的响应
对应于一个
GET 请求,但没有响应
身体。这对于检索很有用
响应中写入的元信息
标头,无需传输
全部内容。

You must use Range HTTP header:

Range. Request only part of an entity.
Bytes are numbered from 0. Range:
bytes=500-999

Ie. If you want download 1000 file in 4 parts, you will starts 4 downloads:

  1. 0-2499
  2. 2500-4999
  3. 5000-7499
  4. 7500-9999

And then simply join data from responses.

To check file size you can use HEAD method:

HEAD Asks for the response identical
to the one that would correspond to a
GET request, but without the response
body. This is useful for retrieving
meta-information written in response
headers, without having to transport
the entire content.

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