Metadata-Version: 2.1
Name: aioserver
Version: 0.6.2
Summary: An async web framework for humans
Home-page: https://github.com/divbzero/aioserver
Author: Chris Lei
Author-email: chris@divbzero.com
License: MIT
Description: Installation
        ---
        
        ```
        pip install aioserver
        ```
        
        Usage
        ---
        
        ```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.cors('*')
        @app.get('/cross-origin-resource-sharing')
        async def cross_origin_resource_sharing(request):
            return {'message': 'Greetings from a different origin!'}
        
        @app.cors('*', ['X-Custom-Header'])
        @app.get('/cross-origin-header-sharing')
        async def cross_origin_header_sharing(request):
            return 200, {'X-Custom-Header': 'share-this-header-too'}, {'message': 'Hello!'}
        
        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
        
        ### v0.5.0
        
        - Serialize XML ElementTree as text/xml response
        
        ### v0.6.0
        
        - Decorator-based CORS
        
        ### v0.6.2
        
        - Fix project description
        
Keywords: asyncio aiohttp async web framework forhumans simple HTTP server CORS
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: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Requires-Python: >=3.5
Description-Content-Type: text/markdown
