Metadata-Version: 1.2
Name: aioserver
Version: 0.3.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
Description: 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.run(host='127.0.0.1', port=8080)
        
        Changelog
        ---------
        
        v0.2.0
        ~~~~~~
        
        -  Decorator-based request handlers
        
        v0.3.0
        ~~~~~~
        
        -  Allow handler to specify HTTP response status
        -  Allow handler to specify additional HTTP headers
        
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
