Skip to main content

Async web framework

Project description

# 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.


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

nougat-0.2.5-py3-none-any.whl (17.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page