flask-validator
flask-validator copied to clipboard
A Python Flask data validation library
Plz upload the doc on pypi
In query string, data is not bool or int but string, validator check instead if is instance of bool. The validator should be fixed as i reported [https://github.com/adekoder/flask-validator/pull/18#issuecomment-986962150](https://github.com/adekoder/flask-validator/pull/18#issuecomment-986962150)
with using this installation command: pip install git+git://github.com/adekoder/flask-validator.git#egg=flask-validator, validators module doesn't appear on the installed folder and it requires to copy it manually.
Bumps [jinja2](https://github.com/pallets/jinja) from 2.10 to 2.11.3. Release notes Sourced from jinja2's releases. 2.11.3 This contains a fix for a speed issue with the urlize filter. urlize is likely to be...
#26 Fixing instructions for installation in order to prevent the wrong package to be installed When installation was done using `pip install flask-validator` The installed package was https://github.com/xeBuz/Flask-Validator
It is appreciate if the messages and the response will managed by a simple module. This will allow to easy add languages and edit the error code in one place....
i had an error like this. `"/Users/nurmuhlis/Documents/SPN/spn-gate-server/app/controller/OfficerController.py", line 10, in from flask_validator import ValidatorEngine ImportError: cannot import name 'ValidatorEngine' from 'flask_validator' (/Users/nurmuhlis/Documents/SPN/venv/lib/python3.7/site-packages/flask_validator/__init__.py)` @adekoder
I have a payload, structured as follows: ``` { "alpha": { "bravo": {"charlie": "delta"}, "whiskey": {"yankee": "zulu"} } } ``` I am unable to validate items in `alpha`, i.e `bravo`...
When a request payload is a JSON array, the validator throws an `flask_validator.exceptions.ValidatorAttributeError: ('AttributeError', 'json passed, expecting json or form_data or query_string or headers')` JSON Arrays are converted to list...