Program and module for download queue optimization using multi-thread.


Keywords
download, thread, speed, resume, multi, simple
License
MIT
Install
pip install DSDownload==1.6.0.2

Documentation

DSDownload Language Badge Dependencies Badge License Badge Status Badge

Program and module for download queue optimization using multi-thread

Features

  • Can be used as script and module
  • Written in uncomplicated Python
  • Easily download files in the fastest speed possible
  • Easy to install
  • Stupidly easy to use
  • Very fast start up and response time
  • Uses natives libs
  • Option to organize your files
  • Download 100 files in less than 40s
  • Download files from everywhere
  • Get real filename
  • Supports HTTPS

Installation

Option 1: Pip

$ pip install DSDownload

Option 2: From source

$ git clone https://github.com/DiSiqueira/DSDownload.git
$ cd DSDownload/
$ python setup.py install

Usage

Basic usage

# Download a file
$ dsdownload https://github.com/DiSiqueira/DSDownload/archive/1.6.0.0.tar.gz

Download using Workers

# Download 3 files using 2 Workers
$ dsdownload --workers 2 https://i.imgur.com/eUrbKtO.jpg https://i.imgur.com/9am20SK.jpg https://github.com/DiSiqueira/DSDownload/archive/1.6.0.0.tar.gz

Combine everything

# Download 3 files using 2 Workers and put on my-images folder
$ dsdownload --output my-images --workers 2 https://github.com/DiSiqueira/DSDownload/archive/1.6.0.0.tar.gz https://i.imgur.com/9am20SK.jpg https://i.imgur.com/KR06C.jpg

Module Usage

The module allows you to download url lists in your own Python programs without going through the command line. Here's an example of it's usage:

Example

from DSDownload import DSDownload

urls = ['https://i.imgur.com/eUrbKtO.jpg', 'https://github.com/DiSiqueira/DSDownload/archive/1.6.0.0.tar.gz']
workers = 2
output = 'My-Files'

DSDownload.DSDownload(urls, workers, output)

Program Help

Contributing

Bug Reports & Feature Requests

Please use the issue tracker to report any bugs or file feature requests.

Developing

PRs are welcome. To begin developing, do this:

$ git clone --recursive git@github.com:DiSiqueira/DSDownload.git
$ cd DSDownload/DSDownload/
$ python DSDownload.py

Social Coding

  1. Create an issue to discuss about your idea
  2. Fork it
  3. Create your feature branch (git checkout -b my-new-feature)
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create a new Pull Request
  7. Profit! ✅

License

The MIT License (MIT)

Copyright (c) 2013-2015 Diego Siqueira

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.