Metadata-Version: 2.0
Name: file-dl
Version: 0.0.1.1
Summary: File Download Accelerator written in pure python
Home-page: https://github.com/animeshkundu/file-dl
Author: Animesh Kundu
Author-email: anik.edu@gmail.com
License: LICENSE.txt
Platform: UNKNOWN
Requires-Dist: futures (==3.0.5)

file-dl
=======

File Download Accelerator. Supports both HTTP and FTP downloads.

CLI tool for any *nix* system. Inspired by IDM on Windows.


Usage
----

file-dl [-h] [--directory DIRECTORY] [--user USER]
               [--password PASSWORD] [--parallelism PARALLELISM]
               [--retries RETRIES] [--timeout TIMEOUT]
               [--min-chunk-size MIN_CHUNK_SIZE]
               url


positional arguments:

  url                   The link to downlaod


optional arguments:

  -h, --help            show this help message and exit

  --directory DIRECTORY, -d DIRECTORY  Directory where the file will be downloaded

  --user USER           Authentication - Username

  --password PASSWORD   Authentication - Password

  --parallelism PARALLELISM, -p PARALLELISM  Number of parallel downloads

  --retries RETRIES, -r RETRIES  Maximum number of retries

  --timeout TIMEOUT, -t TIMEOUT  Seconds to wait for retrying

  --min-chunk-size MIN_CHUNK_SIZE Minimum chunk size to download




