https://github.com/raclettes/multithread-downloader
A simple multi-threaded downloader
https://github.com/raclettes/multithread-downloader
Last synced: 4 months ago
JSON representation
A simple multi-threaded downloader
- Host: GitHub
- URL: https://github.com/raclettes/multithread-downloader
- Owner: raclettes
- Created: 2020-05-30T16:40:32.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-29T19:47:18.000Z (about 4 years ago)
- Last Synced: 2024-11-17T10:45:50.901Z (6 months ago)
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Multithread downloader
Simple tool that uses multiple threads to download a file. It pre-allocates space to the file before beginning, allowing the threads to write their own sections.## Compilation
To compile, run
```
py -m pip install -r requirements.txt
py -m pip install -r requirements-build.txt
```Then run
```
pyinstaller --onefile interface.py --additional-hooks-dir=hooks --noconsole
```(Or run `compile.bat`, which executes the same `pyinstaller` command as written above.)
## Running without building
Simply run
```
py -m pip install -r requirements.txt
```And then run
```
py interface.py
```