- Date:
- 2019-10-13
- Version:
- 1.2.0
Event driven http download library with automatic resume and other features. The goal of this module is to ease the process of downloading files and resuming interrupted downloads. The library is written in an event-driven style similar to GTK. The module defines the class Downloader. Instances of this class download a file from an http server and call callback functions whenever an event happens ralated to this download. Examples of events are download state change (start, pause, complete, error) and download speed change. The following is a typical usage example:
import bitpit
#will download this
url = 'https://www.python.org/static/img/python-logo.png'
d = bitpit.Downloader(url) #downloader instance
#listen to download events and call a function whenever an event happens
#print state when state changes
d.listen('state-changed', lambda var: print('download state:', var.state))
#print speed in human readable format whenever speed changes
#speed is updated and callback is called every 1 second by default
d.listen('speed-changed', lambda var: print('download speed:', *var.human_speed))
#register another callback function to the speed change signal
#print percentage downloaded whenever speed changes
d.listen('speed-changed', lambda var: print(int(var.percentage), '%'))
#print total file size in human readable format when the downloader knows the file size
d.listen('size-changed', lambda var: print('total file size:', *var.human_size))
#done registering callbacks. lets start our download
#the following call will not block. it will start a new download thread
d.start()
#do some other work while download is taking place...
#wait for download completion or error
d.join()
This module can also be run as a main python script to download a file. You can have a look at the main function for another usage example.
commandline syntax:
python -m bitpit.py [-r rate_limit] [-m max_running] url [url ...]
- args:
url: one or more urls to download.
-r rate_limit: total rate limit for all running downloads.
-m max_running: maximum number of running downloads at any single time.
Tutorial
Check out bitpit tutorial at http://bitpit.readthedocs.io/
Release files for bitpit 1.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| bitpit-1.2.0.tar.gz | 48.8 kB | Details |
Release files / bitpit-1.2.0.tar.gz
| Download URL | bitpit-1.2.0.tar.gz |
|---|---|
| Size | 48.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
8d393307adc6689cebf415a75c365b8c395bd0a21f91d37d7ed2dd4ba6073e72
|
|
BLAKE2b-256 checksum How to use checksums |
5009f7d827f6fbf26f3af685afecc7e0d11b88cd5b3ead7d92b103e11fd09dd9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.10.0 pkginfo/1.2.1 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.8
|