https://github.com/mrkiven/walila
A WSGI framework based on Gunicorn
https://github.com/mrkiven/walila
gunicorn python wsgi
Last synced: 7 months ago
JSON representation
A WSGI framework based on Gunicorn
- Host: GitHub
- URL: https://github.com/mrkiven/walila
- Owner: MrKiven
- Created: 2017-06-06T01:27:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-11T11:17:20.000Z (over 8 years ago)
- Last Synced: 2025-02-04T03:54:45.511Z (8 months ago)
- Topics: gunicorn, python, wsgi
- Language: Python
- Homepage:
- Size: 112 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Walila - Awesome toolkit for internal

### Install
```shell
pip install walila
````walila --help` for more detail.
### Sample project
```
hello
├── app.yaml
├── requirements.txt
├── tests
│ ├── __init__.py
│ └── conftest.py
└── world
├── __init__.py
├── app.py
└── settings.py
```### Components
1. db manager
2. settings wrapper
3. hook wrapper
4. rabbitmq wrapper### Try async task
```
$ celery -A walila.example.task worker -l INFO -Q default -c 10
``````
$ python test.py 10
```