https://github.com/deadblue/boost-flask
Make flask more simple.
https://github.com/deadblue/boost-flask
flask python
Last synced: 2 months ago
JSON representation
Make flask more simple.
- Host: GitHub
- URL: https://github.com/deadblue/boost-flask
- Owner: deadblue
- License: mit
- Created: 2024-07-15T02:42:43.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-07-01T03:28:01.000Z (about 1 year ago)
- Last Synced: 2026-01-04T00:18:44.913Z (6 months ago)
- Topics: flask, python
- Language: Python
- Homepage:
- Size: 116 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BoostFlask
Say goodbye to `app.add_url_rule` or `@app.route`.
## Features
- Automatically scan views and register them to your Flask app.
- Automatically inject dependencies to your views.
- Gracefully release resource when app shutdown.
## Install
```bash
# Install master version
pip install boost-flask
# Or install develop version
# pip install git+https://github.com/deadblue/boost-flask.git@develop
```
## Example
See [example](example)