An open API service indexing awesome lists of open source software.

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.

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)