A library to filter and validate input data in Flask applications
Project description
flask-inputfilter
The InputFilter class is used to validate and filter input data in Flask applications. It provides a modular way to clean and ensure that incoming data meets expected format and type requirements before being processed.
Thank you for using flask-inputfilter!
If you have any questions or suggestions, please feel free to open an issue on GitHub.
If you don’t want to miss any updates, please star the repository. This will help me to understand how many people are interested in this project.
For information about the usage you can view the documentation.
Installation
pip install flask-inputfilter
Quickstart
To use the InputFilter class, create a new class that inherits from it and define the fields you want to validate and filter.
There are numerous filters and validators available, but you can also create your own.
Definition
from flask_inputfilter import InputFilter
from flask_inputfilter.Condition import ExactlyOneOfCondition
from flask_inputfilter.Enum import RegexEnum
from flask_inputfilter.Filter import StringTrimFilter, ToIntegerFilter, ToNullFilter
from flask_inputfilter.Validator import IsIntegerValidator, IsStringValidator, RegexValidator
class UpdateZipcodeInputFilter(InputFilter):
def __init__(self):
super().__init__()
self.add(
'id',
required=True,
filters=[ToIntegerFilter(), ToNullFilter()],
validators=[
IsIntegerValidator()
]
)
self.add(
'zipcode',
filters=[StringTrimFilter()],
validators=[
RegexValidator(
RegexEnum.POSTAL_CODE.value,
'The zipcode is not in the correct format.'
)
]
)
self.add(
'city',
filters=[StringTrimFilter()],
validators=[
IsStringValidator()
]
)
self.addCondition(
ExactlyOneOfCondition(['zipcode', 'city'])
)
Usage
To use the InputFilter class, call the validate method on the class instance. After calling validate, the validated data will be available in g.validated_data. If the data is invalid, a 400 response with an error message will be returned.
from flask import Flask, g
from your-path import UpdateZipcodeInputFilter
app = Flask(__name__)
@app.route('/update-zipcode', methods=['POST'])
@UpdateZipcodeInputFilter.validate()
def updateZipcode():
data = g.validated_data
# Do something with validated data
id = data.get('id')
zipcode = data.get('zipcode')
city = data.get('city')
See also
For further instructions please view the documentary.
For ideas, suggestions or questions, please open an issue on GitHub.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file flask_inputfilter-0.1.0.tar.gz.
File metadata
- Download URL: flask_inputfilter-0.1.0.tar.gz
- Upload date:
- Size: 40.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c001215ff8d21076cdc5d7abdd98842b23264683bb0e5c90e35922327faf544e
|
|
| MD5 |
d88777b645d1269dccb5bf90c922f4f7
|
|
| BLAKE2b-256 |
9e6e9b998aee00a4c7d58a72649a7507c26f2c3e6616f5c1f85e11cd1b5a4ad7
|
File details
Details for the file flask_inputfilter-0.1.0-py3-none-any.whl.
File metadata
- Download URL: flask_inputfilter-0.1.0-py3-none-any.whl
- Upload date:
- Size: 67.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0356237516da9b7a35ca379a6d9d4712ebe4953374a528a2cdae0fa26d096f18
|
|
| MD5 |
6a84d6b86320437e17a7f37b90430458
|
|
| BLAKE2b-256 |
e0fb0970923b466dd8a98046d37a24502a88c58765dc1e51980cddf65522c71e
|