Skip to main content

Busie Flask Helper

A package to help with common initialization code across Busie Flask projects

Helpful for use with the application factory pattern. Allows for modularization of initialization code, such that factories are not cluttered with boilerplate initialization

Installation

pip install busie-flask-helper

Usage

# in app.py, or wherever application initialization lives
from busie_flask import FlaskHelper
helper = FlaskHelper('abs/path/to/project/')
db = helper.db
auth = helper.auth
cache = helper.cache

# Other Initialization Code omitted

def create_app():
    app = Flask(__name__)
    # Other App Factory initialization omitted

    # this invocation initializes all of the helper objects with the application
    # this includes migration commands, models, views, auth, cache client, orm
    helper.init_app(app, 'relative/path/to/models', '/relative/path/to/views')

    return app

# in some module, maybe an API View
from flask import request, render_template
from src.app import auth, app

@app.route('/foo')
@auth.requires_web_auth
def foo():
    return render_template('foo.html')

class SomeView(MethodView):
    decorators = [auth.require_api_auth]

    def get(self):
        if auth.requires_permission('SomeView:bar'):
            return 'ok', 200
        raise AuthError({'code': 'some_error', 'description': 'something went wrong'}, 403)

API

FlaskHelper

Public Properties

Public Methods

  • FlaskHelper(root_dir, app=None, models_dir=None, views_dir=None)
    • param root_dir: The root directory of the project, best practice to pass an abspath here. if your application lives in src/app then your root dir should be src/
    • See init_app method documentation for specifics on the other params
  • init_app(self, app, models_dir, views_dir)
    • param app: A Flask application instance
    • param models_dir: Relative path to the models directory, with respect to the root_dir that the helper was initialized with
    • param views_dir: same as models_dir, but for views

AuthHelper

This is an Auth0 Integration. It comes with helpful decorators for protecting both API and Web App views. It also automatically adds /login, /callback, and /logout routes to your application for Auth0 Authorization Code Flow Authentication. Note that this feature cannot be disabled at this time, but this ability will be added in a future release. In web applications and API's, merely authenticating should never be enough to gain access to a protected resource.

Public Properties

None

Public Methods

  • AuthHelper(app=None): Constructor
  • init_app(self, app): Initialize the AuthHelper with a Flask application
    • param app: A Flask application instance. app.config must have AUTH0_AUDIENCE AUTH0_DOMAIN and AUTH0_ALGORITHMS
  • requires_api_auth(self, f): A decorator for views that require the auth code with pkce flow.
  • requires_web_auth(self, f): A decorator for views that require the auth code flow (no pkce)
  • get_rsa_key_from_unverified_token(self, token): Determines the RSA key to use from the token's kid
    • param token: A json web token with appropriate headers
    • return: rsa_key (dict) or None
  • handle_rsa_decode(self, rsa_key, token): decodes the token using rsa
    • param rsa_key: dict representation of an RSA key
    • param token: a json web token with necessary claims
  • requires_scope(self, required_scope): determine if the auth token has the provided required scope
    • param required_scope: string, the desired scope for the resource
    • return: bool
  • requires_permission(self, required_permission): determine if the auth token has the provided required permission
    • param required_permission: string, the desired permission for the resource
    • return: bool
  • static -> get_token_auth_header(): gets the auth header from the request context and formats it properly
    • return: str

CacheClient

Public Properties

  • redis: The redis instance. Allows for direct interation with the python Redis API

Public Methods

  • CacheClient(app=None): Constructor
  • init_app(self, app): Initialize the redis client with application.
    • param app: A Flask application instance. app.config must have REDIS_HOST REDIS_PORT and REDIS_DB. NOTE REDIS_PASSWORD is also used, but this method will not throw without it
  • get: Alias for redis.get
  • set: Alias for redis.set

Release files for busie-flask-helper 2.2.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for busie-flask-helper 2.2.2
File Size Uploaded
busie-flask-helper-2.2.2.tar.gz 14.9 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for busie-flask-helper 2.2.2
File Interpreter ABI Platform
busie_flask_helper-2.2.2-py3-none-any.whl Python 3 none any Details

Total release size: 33.1 kB

Release files / busie-flask-helper-2.2.2.tar.gz

Download URL busie-flask-helper-2.2.2.tar.gz
Size 14.9 kB
Tags Source
SHA-256 checksum
How to use checksums
52b348f55adcb3f2b91a0c9f9bf746d1498b69eed185f7cefd82783e6ad95875
BLAKE2b-256 checksum
How to use checksums
945b450247c22efdb2a4af8c1eb6429ab68abb6f87d175e4bcfa23b77b94c7a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.7.9

Release files / busie_flask_helper-2.2.2-py3-none-any.whl

Download URL busie_flask_helper-2.2.2-py3-none-any.whl
Size 18.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
ce36643d8d75abaad70194fc0133805174faaf5b18ec6659769e611668375da1
BLAKE2b-256 checksum
How to use checksums
813003d44f1fe931fc9977fb6ec2158246f9cea0bd100469dbc4ef32e176decd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.7.9

Release history Release notifications | RSS feed

This release

2.2.2 This release

2 release files

2.2.1

2 release files

2.2.0

2 release files

2.1.0

2 release files

2.0.4

2 release files

2.0.3

2 release files

2.0.2

2 release files

2.0.1

2 release files

2.0.0

2 release files

1.1.1

2 release files

1.1.0

2 release files

1.0.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page