Skip to content

Various Flask utilities that I find useful in my projects

License

Notifications You must be signed in to change notification settings

Seluj78/flask-utils

Repository files navigation

Documentation Status GitHub commit activity GitHub commits since latest release GitHub Actions Workflow Status GitHub Actions Workflow Status GitHub License All Contributors codecov

Flask-Utils

A collection of useful Flask utilities I use every day in my Flask projects.

Installation

pip install flask-utils

Usage

from flask import Flask
from flask_utils import FlaskUtils
from flask_utils import BadRequestError

app = Flask(__name__)
utils = FlaskUtils(app, register_error_handlers=True)

@app.route('/')
def index():
    raise BadRequestError
from typing import List, Optional
from flask import Flask
from flask_utils import validate_params

app = Flask(__name__)

@app.post('/create-user')
@validate_params({"first_name": str, "last_name": str, "age": Optional[int], "hobbies": List[str]})
def create_user():
    # ...
    # This will enforce the following rules:
    # - first_name and last_name must be strings and are required
    # - age is optional and must be an integer
    # - hobbies is a list of strings
    # This is just an example, you can use any type of validation you want
    return "User created"

Documentation

You can find the full documentation at Read the Docs

Testing

Install the requirements

pip install -r requirements-dev.txt

Make sure tox is at the latest version

pip install --upgrade tox

Run the tests

tox

OR

Run the tests multi-threaded

tox -p

Contributors

Jules Lasne
Jules Lasne

💻 📖 🚇 💡 🧑‍🏫 📦 📆 👀
Mews
Mews

📖
Julien Palard
Julien Palard

🤔
Add your contributions

About

Various Flask utilities that I find useful in my projects

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •