Metadata-Version: 2.0
Name: aioserver
Version: 0.2.0
Summary: An async web framework for humans
Home-page: https://github.com/divbzero/aioserver
Author: Will 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
=========

*An async web framework for humans*

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

::

    pip install aioserver

Usage
-----

.. code:: python

    from aiohttp import web
    from aioserver import Application

    app = Application()

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

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


