Metadata-Version: 2.0
Name: aioserver
Version: 0.4.0
Summary: An async web framework for humans
Home-page: https://github.com/divbzero/aioserver
Author: William Go
Author-email: will@divbzero.com
License: MIT
Description-Content-Type: UNKNOWN
Keywords: asyncio aiohttp async web framework humans simple HTTP HTTPS server forhumans
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Requires-Python: >=3.5
Requires-Dist: aiohttp
Requires-Dist: cchardet

aioserver
=========

Installation
------------

::

    pip install aioserver

Usage
-----

.. code:: python

    from aioserver import Application

    app = Application()

    @app.get('/')
    async def index(request):
        return {'message': 'Hello, world!'}

    @app.get('/found')
    async def found(request):
        return 302, {'Location': 'https://www.example.com/'}, {'message': 'Found'}

    @app.get('/not-found')
    async def not_found(request):
        return 404, {'message': 'Not Found'}

    @app.get('/server-error')
    async def server_error(request):
        return 500

    app.run(host='127.0.0.1', port=8080)

Changelog
---------

v0.2.0
~~~~~~

-  Decorator-based request handlers

v0.4.0
~~~~~~

-  Allow handler to specify HTTP response status
-  Allow handler to specify additional HTTP headers


