如何在twisted中创建部分下载?
如何创建多个异步部分下载的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用 Range HTTP 标头:
即。如果您想分 4 部分下载 1000 个文件,您将开始 4 次下载:
然后只需加入响应中的数据即可。
要检查文件大小,您可以使用 HEAD 方法:
You must use Range HTTP header:
Ie. If you want download 1000 file in 4 parts, you will starts 4 downloads:
And then simply join data from responses.
To check file size you can use HEAD method: