Skip to main content

Python downloader with progress

Project description

Homura

Build PyPI version

Homura (ほむら) is a Python downloader with progress, which can be used to download large files.

It is named after Homura Akemi.

Features

  • PycURL based

  • Resume downloads (if server supports byte ranges on the resource)

  • Support for requests.Session

Installation

Homura depends on PycURL. Install dependencies before installing the python package:

Ubuntu

$ sudo apt-get install build-essential libcurl4-openssl-dev python-dev

Fedora

$ sudo yum groupinstall "Development Tools"
$ sudo yum install libcurl libcurl-devel python-devel

Then, install homura

$ pip install homura

Usage

The simplest usage is to import the utility function download:

>>> from homura import download
>>> download('http://download.thinkbroadband.com/200MB.zip')
    3%      6.2 MiB     739.5 KiB/s            0:04:28 ETA

To specify path for downloaded file:

>>> download(url='http://download.thinkbroadband.com/200MB.zip',
             path='/path/to/big.zip')

You can specify extra headers as a dictionary:

>>> download(url='http://example.com', headers={'API-Key': '123456'})

Or you can work with Session objects of the requests library:

>>> import requests
>>> s = requests.Session()
# Do some work with `s` and send requests
>>> download(url='http://example.com', session=s)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

homura-0.1.2.tar.gz (5.8 kB view details)

Uploaded Source

File details

Details for the file homura-0.1.2.tar.gz.

File metadata

  • Download URL: homura-0.1.2.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for homura-0.1.2.tar.gz
Algorithm Hash digest
SHA256 e5bbee07543a1b9786b6e0490c930eba9379d35cf2ed3d7f377924d79d945601
MD5 f9dee964710b456e50dd3fb3fb2b2881
BLAKE2b-256 880ff3fd8ab621802e0a97c79a859b05db1e618f33349bd29b5a27ba11cb8c3e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page