Metadata-Version: 1.1
Name: albatross3
Version: 0.3.0
Summary: A modern async python3 web framework
Home-page: https://github.com/kespindler/albatross
Author: Kurt Spindler
Author-email: kespindler@gmail.com
License: MIT
Description: [![Build Status](https://travis-ci.org/kespindler/albatross.svg?branch=master)](https://travis-ci.org/kespindler/albatross)
        
        # Albatross
        
        
        A modern, fast, simple, natively-async web framework. (Python3.5 only)
        
        ```python
        from albatross import Server
        import asyncio
        
        
        class Handler:
            async def on_get(self, req, res):
                await asyncio.sleep(0.1)
                res.write('Hello, %s' % req.args['name'])
        
        
        app = Server()
        app.add_route('/(?P<name>[a-z]+)', Handler())
        app.serve()
        ```
        
        ## Install
        
            pip3 install albatross3
        
        ## Features
        
        - You can read the entire codebase in about 30 minutes.
        
        - It's natively async
        
        - This works with the `uvloop` project, to make your server fast!
        
Keywords: web http server async
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
