Skip to main content

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


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)

Uploaded Source

File details

Details for the file blueprint-decr-0.1.1.tar.gz.

File metadata

File hashes

Hashes for blueprint-decr-0.1.1.tar.gz
Algorithm Hash digest
SHA256 afa40fd5e20b3c06383bd438b759dd10780d87f2715c56145268499ed2a8da3a
MD5 e1b51dc670cec5225717246b8f4bec36
BLAKE2b-256 2b94221409d69b5f298e19ce7b450fa32ce3f8a5ff892e98c0cc54e4db87a6d5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page