Easy validation for python
Project description
Requirements
- Python 3.6+
Installation & Upgrade
pip install fastvalidate --upgrade
Dictionary Validation
from fastvalidate import Validator
validator = Validator({
'first_name': 'Mo',
'last_name': None,
'age': '5',
'email': 'mojtabaa.hn@gmail',
'website': 'yup',
'languages': ['en', 'fa'],
}, {
'first_name': 'required|min:3',
'last_name': 'required|min:3',
'age': 'required|numeric|gt:10|lt:120',
'email': 'required|email',
'website': 'required|url',
'languages': 'required|list|min:3'
})
validator.validate().errors()
# {
# 'first_name': 'Field length must be at least 3 characters',
# 'last_name': 'Field is required',
# 'age': 'Field must be greater than 10',
# 'email': 'Field must be email',
# 'website': 'Field must be url',
# 'languages': 'Field must have at least 3 items'
# }
Pydantic Validation
from fastvalidate import BaseModel
class User(BaseModel):
email: str
website: str
class Config:
rules = dict(
email='required|email|min:3',
website='required|url|min:3'
)
user = User(email='whatever', website='whoever')
# ValidationError
# [
# dict(loc=('email',), msg='Field must be email', type='value_error'),
# dict(loc=('website',), msg='Field must be url', type='value_error')
# ]
Available Rules
Type | Applicable On | signature |
---|---|---|
Boolean | string, boolean | bool , boolean |
Numeric | string, integer | numeric , int , integer |
List | string(json), list | list , array |
Dictionary | string(json), dict | dict |
string | email |
|
Password | string | password |
RegEx | string | regex:<pattern> |
URL | string | url |
Length | string, integer, float, list, dict | len:<length> , length:<length> |
Min | string, integer, float, list, dict | min:<threshold> |
Max | string, integer, float, list, dict | max:<threshold> |
Choice | string | choice:<x>,<y>,<z> in:<x>,<y>,<z> |
Greater Than | int | gt:<threshold> |
Greater Than Equal | int | gte:<threshold> |
Less Than | int | lt:<threshold> |
Less Than Equal | int | lte:<threshold> |
Testing
# install pytest
pip install pytest
# run tests
python -m pytest
Development
# install requirements
pip install build twine
# Build package
make build
# Push to basalam repository
make push
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
fastvalidate-0.0.4.tar.gz
(7.0 kB
view details)
Built Distribution
File details
Details for the file fastvalidate-0.0.4.tar.gz
.
File metadata
- Download URL: fastvalidate-0.0.4.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4ed255a58c3c35e16dca2fafd011ac613b4eaaf0dec51d6b853624a5c4ecd15 |
|
MD5 | ec8c2c470fd53494234e905420ed257e |
|
BLAKE2b-256 | 056730d24e463f933b06d6e6a3481df26fa92a89b515207c22a554bbd3ee5789 |
File details
Details for the file fastvalidate-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: fastvalidate-0.0.4-py3-none-any.whl
- Upload date:
- Size: 12.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8632bb75501df9468788e209b863fc5fa8fa31c847f6a91361259b75349bad5b |
|
MD5 | f89b8877dbd70c1989a2ce38362a2c56 |
|
BLAKE2b-256 | 538d8b4966c34dec0c4332bd34d0f64d9b4e0d61bf085ba33b9365a56a0a2fc3 |