Async web framework
Project description
# nougat
    [](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.
    [](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
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
nougat-0.2.5-py3-none-any.whl
(17.5 kB
view details)
File details
Details for the file nougat-0.2.5-py3-none-any.whl.
File metadata
- Download URL: nougat-0.2.5-py3-none-any.whl
- Upload date:
- Size: 17.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a174b77f6106d1b4144c4a49603868eeb2cdbea8477888c97367e7accc377ba
|
|
| MD5 |
efe5b620c3be6219b7d00bf1fd07ef16
|
|
| BLAKE2b-256 |
b0d9bb4e37dc1c10263947cdd52d304c27f470c707937eafd1f4e0e843d10389
|