Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 816 Bytes

README.md

File metadata and controls

25 lines (15 loc) · 816 Bytes

Build Status Coverage Status

RangeHTTPServer

SimpleHTTPServer with support for Range requests

Quickstart:

$ pip install rangehttpserver
$ python -m rangehttpserver
Serving HTTP on 0.0.0.0 port 8000 ...

Alternatives

If you've found this, you may also be intersted in node's http-server, which also includes support for Range requests.

Development

To release a new version:

pip install --upgrade wheel setuptools twine
python setup.py sdist bdist_wheel
twine upload dist/*