Skip to main content

reliable-download server

Project description

https://img.shields.io/pypi/v/rd-api.svg https://img.shields.io/pypi/l/rd-api.svg https://img.shields.io/pypi/wheel/rd-api.svg

rd-api is an HTTP file server that provides static file hosting and reliable download api for rd client.

rd-api serves files under web-root. You can use it like python3 -m http.server.

In addition, if rd command line tool is used to do the download, it will download in a reliable way by downloading in 2MiB blocks and verify checksum for each block.

Installation

To install this package:

$ sudo apt install -y redis-server   # redis is used to cache block sha1sum
$ pip install --user rd-api
$ rd-api --help
$ ~/.local/bin/rd-api --help     # if ~/.local/bin/ is not in PATH

Baisc Usage

server side:

$ ls
bigfile1 bigfile2
$ rd-api --host 0.0.0.0 --port 8082

client side (requires rd client):

$ rd http://server-ip:8082/bigfile1

Documentation

Reliable download is implemented this way:

  • User uses rd client to request a resource to download.

  • rd client requests resource block metadata via the /rd/ api. Block metadata contains block count, block id, block byte offset, block content sha1sum.

  • rd-api calculates and serves block metadata to rd client incrementally. Block metadata is cached in redis after calculation.

  • rd client fetches block using HTTP/1.1 Range header and verifies sha1sum incrementally. When all blocks are downloaded and verified, combine blocks to get the final resource.

  • rd client will retry on http errors and sha1sum verification failures.

  • rd client supports continuing a partial download. You can press Ctrl-C to stop download anytime, and continue later by running the same command again.

Reliable download is written in Haskell, binary is distributed on PyPI for easy installation on linux system. Reliable download only runs in linux.

ChangeLog

  • v1.1.3.0 2022-03-14

    • bugfix: revised logging messages. rd-api supports –verbose option. debug msg is not shown by default.

    • feature: code ported to ghc 8.10.7

  • v1.1.0.0 2018-05-10

    • feature: support passing arguments using env variables, for cli arg –redis-host, the env variable will be REDIS_HOST.

    • bugfix: fix cli argument parsing for string types

  • v1.0.0.3 2018-05-09

    • update installation doc, rd-api requires redis server

  • v1.0.0.2 2018-05-09

    • init release.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

rd_api-1.3.0.0-py2.py3-none-any.whl (5.6 MB view hashes)

Uploaded Python 2 Python 3

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