Metadata-Version: 2.0
Name: httpserver
Version: 1.1.0
Summary: Asyncio implementation of an HTTP server
Home-page: https://github.com/thomwiggers/httpserver
Author: Thom Wiggers
Author-email: thom@thomwiggers.nl
License: BSD
Keywords: httpserver
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: docopt

===============================
Asyncio HTTP Server
===============================

.. image:: https://img.shields.io/travis/thomwiggers/httpserver.svg
        :target: https://travis-ci.org/thomwiggers/httpserver

.. image:: https://img.shields.io/pypi/v/httpserver.svg
        :target: https://pypi.python.org/pypi/httpserver

Python 3.4 asyncio implementation of an HTTP server

* Free software: BSD license
* Documentation: http://pythonhosted.org/httpserver/

Features
--------

* Supports HTTP/1.1
* Supports Keep-Alive
* Serve a specific hostname only
* Bind to an ip address
* Uses asyncio
* Installs an 'httpserver' command




History
-------

1.1.0 (2015-04-02)
---------------------

* No longer rely on sockets to timeout themselves
* Add default timeout of 15 seconds to httpserver
* Negotiate with the Keep-Alive header
* Add ``--version`` command
* Change documentation theme to ``alabaster``

1.0.1 (2015-03-21)
---------------------
* Fix small issue in README on pypi

1.0.0 (2015-03-21)
---------------------

* First release


