Decorators for flask-wtf
Project description
Flask-WTF-Decorators 
Using decorators to validate form.
Installation
Using pip
pip install flask-wtf-decorators
Using Pipenv
pipenv install flask-wtf-decorators
Usage
Flask-WTF-Decorators is easy to use. You can define a view that requires validation.
from flask-wtf-decorators import FormValidator
form_validator = FormValidator()
@form_validator.validate_form(TestForm)
@app.route('/', methods=['GET', 'POST'])
def index(form):
pass
You can tell Flask-WTF-Decorators what to do when a form is illegal. To do this you should provide a callback for error_handler.
@form_validator.error_handler
def error_handler(errors):
return jsonify({'errors': errors}), 400
Test
python -m unittest discover -s tests
Contributing
Please submit a pull request to contribute.
License
This project is licensed under the MIT License.
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 Distributions
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_WTF_Decorators-0.1.2-py2.py3-none-any.whl.
File metadata
- Download URL: Flask_WTF_Decorators-0.1.2-py2.py3-none-any.whl
- Upload date:
- Size: 3.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f17b431edd6f28dcea388dc8c8e02b422a1015084d0bd716fbbef457c5be7e7
|
|
| MD5 |
f29d9f54b8349f3c8e5ac2e9363f75d3
|
|
| BLAKE2b-256 |
e532238f799563d6dadce1513aed451ca613c4717c00870b813586dae92ce0f7
|