Metadata-Version: 1.2
Name: aiko
Version: 0.2.0
Summary: UNKNOWN
Home-page: https://github.com/zeromake/aiko
Author: zeromake
Author-email: a390720046@gmail.com
Maintainer: zeromake
Maintainer-email: a390720046@gmail.com
License: MIT
Project-URL: Code, https://github.com/zeromake/aiko
Project-URL: Issue tracker, https://github.com/zeromake/aiko/issues
Description: aiko
        ======
        
        aiko is a base asyncio's lightweight web application framework.
        It is designed to make `koa`_ api.
        
        Installing
        ----------
        
        Install by code
        
        .. code-block:: text
        
            $ git clone https://github.com/zeromake/aiko
            $ cd aiko
            $ python setup.py install
        
        A Simple Example
        ----------------
        
        .. code-block:: python
        
            import asyncio
            from aiko import App
        
            loop = asyncio.get_event_loop()
            app = App(loop)
        
            def hello(ctx, next_call):
                return "Hello, World!"
        
            app.use(hello)
        
            if __name__ == "__main__":
                app.run(host="0.0.0.0", port=5000)
        
        .. code-block:: text
        
            $ curl http://127.0.0.1:5000
            Hello, World!
        
        Links
        -----
        .. _koa: https://github.com/koajs/koa
        
Platform: any
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.5
