This repository has been archived on 2025-12-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Multi-threadedDownloader/README.md

18 lines
449 B
Markdown
Raw Normal View History

2021-08-31 16:40:21 +08:00
# Multi-threadedDownloader
2021-08-31 17:00:19 +08:00
# 使用前准备
2021-08-31 16:40:21 +08:00
2021-08-31 17:07:35 +08:00
- 程序基于Python3编程 请提前安装
- 下载所有文件
- 打开文件夹在路径栏输入`pip -r requirements.txt` 等待安装成功后即可
2021-08-31 17:00:19 +08:00
# 如何使用
- 1.双击打开py文件(如果可以)
- 2.打开.exe文件 no-console.exe 为无终端版本
2021-08-31 16:40:21 +08:00
2021-08-31 17:07:35 +08:00
## 原理
通过requests获取文件大小(bytes)并分配给每个线程固定大小的数据块,再使用多线程并发下载
2021-08-31 16:40:21 +08:00