Thư viện validate dữ liệu đầu vào
Project description
Validator là thư viện validate dữ liệu input
Version
Phiên bản hiện tại 0.1
Cài đặt:
pip3 install m-validator
Sử dụng:
rules = {
'key1': [Required, InstanceOf(str)],
'status': [InstanceOf(int), In([1,2,3])],
'lang': []
}
data1 = {
'key1': 'abc',
'status': 1,
'lang': 'vi'
}
data2 = {
'status': 1,
'lang': 'vi'
}
valid = HttpValidator(rules)
val_result = valid.validate_object(data1)
if not val_result[VALIDATION_RESULT.VALID]:
errors = val_result[VALIDATION_RESULT.ERRORS]
raise ParamInvalidError(LANG.VALIDATE_ERROR, errors)
data1 --> OK
data2 --> Fail, key1 must be present
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
m-validator-0.1.tar.gz
(8.1 kB
view details)
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 m-validator-0.1.tar.gz.
File metadata
- Download URL: m-validator-0.1.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c52b99128ad37d443f185ea72c35ff47e6fcaabed1350c60f1db68d6770da53
|
|
| MD5 |
37e3072546069ad568bf314c5a207fea
|
|
| BLAKE2b-256 |
cf1bb498faa04bc0bdbda4effa2b82b94c0c22f383e4b9e81eec7318bc8515d6
|
File details
Details for the file m_validator-0.1-py3-none-any.whl.
File metadata
- Download URL: m_validator-0.1-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc86fe73cc045ee00d9611f340db5ffbbdcb4adc9e077c1742111910f0c72e1d
|
|
| MD5 |
200c585c567cedf94c04c34a15598ee2
|
|
| BLAKE2b-256 |
4c0caa572385a00c1c75ce5783848d226b5a21fd39323c75e456a380c4cf4c5d
|