UNKNOWN
Project description
A tiny python lib for decorating all view functions of a flask blueprint.
install
pip install blueprint-decr
usage
# api_blueprint is a blueprint object
import functools
def dummy_decr(func):
@functools.wraps(func)
def wrapper(*sub, **kw):
print(func.__name__)
return func(*sub, **kw)
return wrapper
import blueprint_decr
new_api_blueprint = blueprint_decr.attach(api_blueprint, dummy_decr)
# now, you may register new_api_blueprint with flask app object.
# app.register_blueprint(new_api_blueprint, url_prefix='/api')
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 Distribution
blueprint-decr-0.1.1.tar.gz
(1.7 kB
view details)
File details
Details for the file blueprint-decr-0.1.1.tar.gz.
File metadata
- Download URL: blueprint-decr-0.1.1.tar.gz
- Upload date:
- Size: 1.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afa40fd5e20b3c06383bd438b759dd10780d87f2715c56145268499ed2a8da3a
|
|
| MD5 |
e1b51dc670cec5225717246b8f4bec36
|
|
| BLAKE2b-256 |
2b94221409d69b5f298e19ce7b450fa32ce3f8a5ff892e98c0cc54e4db87a6d5
|