Damn Simple Validation Kit.
Project description
About
Validate dict-like object against schema, using just callables.
Features
Allows validating and sanitizing dicts using any callables
Provides several useful helpers
Easy to use – no class-based boilerplate!
API
validate function takes any mapping as data and another mapping as scheme and check data against scheme. It returns list of errors.
sanitize function takes any mapping as data and another mapping as scheme and converts data according to schema definition.
For more info – see tests.
Examples
Several schemes:
schema = {
'key1': str,
'key2': int,
'key3': int,
}
schema1 = {
'key1': kuvalda.list_of(int),
'key2': kuvalda.list_of(kuvalda.list_of(int))
}
schema2 = {
'section1': {
'key1': str,
'key2': int
},
'section2': kuvalda.mapping(str, int),
'key1': kuvalda.kind_of(bool)
}
schema3 = {
'key1': int,
'key2': kuvalda.default('oh, my'),
'key3': kuvalda.optional(int),
'key4': kuvalda.optional(kuvalda.list_of(int)),
'key5': kuvalda.compose(kuvalda.default(42), int)
}
Install
~/yourvirtualenv/python setup.py install
pip install kuvalda
License
The MIT License, in LICENSE file.
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
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 kuvalda-0.1.0.tar.gz.
File metadata
- Download URL: kuvalda-0.1.0.tar.gz
- Upload date:
- Size: 2.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a88eb3bfd9ac07754556dca795631220affa1d8f4058fe9f36f39a517bf4b5b
|
|
| MD5 |
050185a608b1a7dd4203ed12ade96d89
|
|
| BLAKE2b-256 |
7dbdcda7d86b4cc4ad7d9fc6b235eaa25a948cb325b04f913413457ba80a470b
|
File details
Details for the file kuvalda-0.1.0.macosx-10.12-x86_64.tar.gz.
File metadata
- Download URL: kuvalda-0.1.0.macosx-10.12-x86_64.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa6510f0da6c5b7c1853ea685a9117db78de221b6865cf45ebee09ce9a464166
|
|
| MD5 |
6a5a0da8871801919068e9fc2f9fc70f
|
|
| BLAKE2b-256 |
02274562b150d3b085b75b920e8491ad3cf24cd241cbdb3acfd549901cd35c8b
|