Metadata-Version: 2.1
Name: nougat
Version: 0.2.5
Summary: Async web framework
Home-page: https://github.com/Kilerd/nougat
Author: Kilerd Chan
License: MIT
Keywords: web framework async
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6
Requires-Dist: aiohttp
Requires-Dist: httptools
Requires-Dist: yarl (>=0.13.0)
Requires-Dist: toml (>=0.9.4)
Requires-Dist: fire (>=0.1.3)
Requires-Dist: watchdog (>=0.8.3)
Requires-Dist: websockets

# nougat

![PyPI](https://img.shields.io/pypi/pyversions/nougat.svg) ![PyPI](https://img.shields.io/pypi/status/nougat.svg) ![PyPI](https://img.shields.io/pypi/v/nougat.svg) ![PyPI](https://img.shields.io/pypi/l/nougat.svg) [![Build Status](https://travis-ci.org/NougatWeb/nougat.svg?branch=master)](https://travis-ci.org/NougatWeb/nougat)

Nougat is an asynchronous web framework based on Python3.6, which focus on enhancing the experience of asynchronous web developing

## Installation
Nougat relays on Python3.6 and DOES NOT support the elder version, which is hosted at Pypi. So you can install stable version through:
```bash
pip3 install nougat
```
#### Develop Version
if you wanna test the new feature of Nougat, you can install it from Github:
**In Develop Version it would has some unknown bugs and unstable factors, SO PLEASE CHOOSE IT DELIBERATELY!**
```bash
pip3 install git@github.com:Kilerd/nougat.git@develop
```

### Minimal Usage
```python
from nougat import Nougat

app = Nougat()

async def m(req, res, next):
    res.content = "hello world"
    await next()

app.use(m)

app.run(debug=True)
```


## Document

click [here](https://nougatweb.github.io/nougat/) to see document.

## License

This project is licensed under the MIT License - see the [LICENSE](https://github.com/NougatWeb/nougat/blob/master/LICENSE) file for details.


