Skip to main content

A small flask package

Project description

Flask-Guardian


About

This Package is inspired by Joi

Installation

Use pip for installation

pip install flask-guardian

How to use

Create your rule

from flask_guardian.rules import Rules

my_rules = {
  "login": Rules().Required().String().Max(20),
  "password": Rules().Required().String().Min(8).Max(120)
}

Add the middleware inside your route

@app.route("/login", methods=["POST"])
@Validator(my_rules)
def login_():
  '''your code here'''

Rules

.String()

Verify if the parameter is a string.

.Integer()

Verify if the parameter is an integer.

.Email()

Using a regex, verify if the parameter is conform with email format.

.Min(x)

Verify if the parameter len is more than x.

.Max(x)

Verify if the parameter len is less or equal than x.

.Contains([x, y, z])

Verify if the parameter contains at least one argument of the array.

.notContains([x, y, z])

Verify if the parameter not contains any argument of the array.

.Equal(x)

Verify if the parameter equal x.

.notEqual(x)

Verify if the parameter not equal x.

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

flask_guardian-0.1.1.tar.gz (4.0 kB view hashes)

Uploaded Source

Built Distribution

flask_guardian-0.1.1-py3-none-any.whl (3.9 kB view hashes)

Uploaded Python 3

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