Metadata-Version: 2.1
Name: alita
Version: 0.1.9
Summary: A simple Python async framework for building web applications. 
Home-page: https://github.com/dwpy/alita
Author: Dongwei
License: BSD
Project-URL: Documentation, https://dwpy.github.io/alita
Project-URL: Code, https://github.com/dwpy/alita
Platform: any
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Provides-Extra: dotenv
Provides-Extra: docs
Requires-Dist: bson
Requires-Dist: attrs
Requires-Dist: blinker
Requires-Dist: click
Requires-Dist: uvloop
Requires-Dist: multidict
Requires-Dist: itsdangerous
Requires-Dist: httptools
Requires-Dist: websockets
Requires-Dist: gunicorn
Requires-Dist: aiofiles
Requires-Dist: jinja2 (>=2.10.1)
Provides-Extra: docs
Requires-Dist: sphinx; extra == 'docs'
Requires-Dist: pallets-sphinx-themes; extra == 'docs'
Requires-Dist: sphinxcontrib-log-cabinet; extra == 'docs'
Provides-Extra: dotenv
Requires-Dist: python-dotenv; extra == 'dotenv'

## Alita

Alita is a lightweight python async web application framework.
- Come into use the same with Flask.
- Using the async/await syntax to write concurrent code.
- Need Python3.5+ version at least.

## Installing
```
pip install alita
```

## Quick Start

```
from alita import Alita

app = Alita()

@app.route('/')
async def hello(request):
    return 'Hello, World!'
```

## Links

- Code: https://github.com/dwpy/alita
- Docs-zh: https://dwpy.github.io/alita
- Docs-en: https://dwpy.github.io/alita-docs-en


