convert json schemas to voluptuous schemas
Project description
voluptuary
This is a tool and library to convert a JSON Schema to a Voluptuous schema.
Usage
from voluptuary import to_voluptuous
# some JSON Schema
json_schema = {
'type': 'object',
'properties': {
'value': {'type': 'integer'},
},
}
# convert to a voluptuous schema
schema = to_voluptuous(json_schema)
# validate something
schema({'value': 1})
Tests
To run the tests, use tox.
$ tox
Why?
This library is for the people who aren’t satisfied with JSON Schema but can’t justify rewriting schemas (“tedious”, “time-consuming”, “little benefit”). But with a library to rewrite the schemas for you, there are no more excuses!
If you are wondering “why voluptuous over JSON Schema”, there are some good reasons listed here. I find voluptuous models to be nicer: more Pythonic, more expressive, easier to read and maintain, easier to customize, better error messages, and so on.
How do I know my converted schema will validate correctly?
First of all, you should always test the validation behavior of your schemas. No library is going to write correct schemas for you.
Aside from that, this library follows the following principles:
Familiar behavior: This library strives to match the validation behavior of the (Draft 4) validator from jsonschema.
Proactive testing: This library includes and actively runs a comprehensive suite of tests to ensure behavior in the first point.
Documentation: This library includes detailed documentation of support for JSON Schema validation features, and strive to keep this up to date.
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
File details
Details for the file voluptuary-0.0.3.tar.gz
.
File metadata
- Download URL: voluptuary-0.0.3.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9710fc8acea4e256ec687761818e9a3426d739db5ba1a1756bec956bd7f8cafb |
|
MD5 | 36d41204a00854324c8fdb33400f91e1 |
|
BLAKE2b-256 | 9fb9d0a6fd8ffb2fcf35330473cd230413334928a8ad4ca9c03fb0fb0a5a1a0c |