Python JSON schema validator with better error message
Project description
kanpai is a library for validating Python data structures, mainly those converted from JSON. e.g. JSON received from api request, obtained from config file etc. The library is built with a focus on better error message. e.g. when validating a dict(which may be converted from JSON), in case of error, Kanpai returns a dict with error details against each keys
Example
Here is a quick example
from kanpai import Kanpai
schema = Kanpai.Object({
'first_name': (Kanpai.String(error='User first name must be string.')
.trim()
.required(error='Please provide user first name.')
.max(256, error='Maximum allowed length is 256')),
'last_name': (Kanpai.String(error='User last name must be a String')
.trim()
.required(error='Please provide user last name.')),
'age' : (Kanpai.Number(error='Age must be a number.')
.max(35,'Maximum allowed age is 35')
.min(18,'Age must be minimum 18'))
})
validation_result = schema.validate({
'first_name':'Chandrakanta',
'age': 15
})
assert validation_result == {
'success': False,
'error': {
'last_name': 'Please provide user last name.',
'age': 'Age must be minimum 18'
},
'data': {
'first_name':'Chandrakanta',
'age': 15
}
}
Installation
Use pip
pip install kanpai
Validators
Validators are the building blocks for Kanpai library. There are validators for different types of data. e.g. String, Array, Object etc. All validators are accessible from Kanpai namespace.
from kanpai import Kanpai
Kanpai.String()
Kanpai.Array()
Kanpai.Boolean()
Validation rules can be applied on a validator instance by calling rule methods. All rule method returns self
. So method calls can be chained. During validaton the rules are checked in order they are applied during validator construction.
Every validator returns an instance of Validator class which has a method called validate
. Validate takes data to be validated as input and return a dictionary obejct containing:
{
'success':'Boolean - Whether validation is success or not',
'error': 'validation error',
'data':'Incase of error data provided for validation, in case success validated data
}
After creating a validator it can be configured to apply validation rule by calling its rule methods. After constructing a validator it can be used for multiple validation safely.
For more details on individual validators and its rule methods please refer corresponding file in docs folder.
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
File details
Details for the file kanpai-0.1.15.tar.gz
.
File metadata
- Download URL: kanpai-0.1.15.tar.gz
- Upload date:
- Size: 12.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f10777b3bf57ac05b59bb5cefbabf7d8c322345faccd4bd3f953c61467183892 |
|
MD5 | 71d6e5f07e20ce063592eb59012d9a88 |
|
BLAKE2b-256 | a1b1e56c792f2cee131003803f5bb7cd600e095a447158191dc74705273314d5 |
File details
Details for the file kanpai-0.1.15-py3-none-any.whl
.
File metadata
- Download URL: kanpai-0.1.15-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8d60de55a6c13fbb79ab978b69095751ad55e2d35c3f7eb4d2f236cf85abd4f |
|
MD5 | 1655f3212ead7ad2f9242dbc75d392b9 |
|
BLAKE2b-256 | f36edd30dc8f6f64fb17b159453c0b331f8576cd69c28e2bafa4f70ec8c840fb |