parallel_downloader 0.3.0

A robust, concurrent file downloader designed to be resilient, supporting automatic retries, crash recovery, and download verification.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
services:
  pd:
    build: .
    container_name: parallel_downloader
    restart: unless-stopped
    ports:
      - "9090:9090"
    volumes:
      - ./downloads:/app/downloads
    environment:
      - PD__SERVER_ADDR=0.0.0.0
      - PD__THREADS=4