A general purpose Python data validator.
Schema format based on JSON Schema Proposal (http://json-schema.org)
Contains code derived from jsonschema, by Ian Lewis and Yusuke Muraoka.
Usage
JSON documents and schema must first be loaded into a Python dictionary type before it can be validated.
Parsing a simple JSON document:
>>> import validictory
>>>
>>> validictory.validate("simplejson", {"type":"string"})
Parsing a more complex JSON document:
>>> import simplejson
>>> import validictory
>>>
>>> data = simplejson.loads('["foo", {"bar":["baz", null, 1.0, 2]}]')
>>> schema = {
... "type":"array",
... "items":[
... {"type":"string"},
... {"type":"object",
... "properties":{
... "bar":{
... "items":[
... {"type":"string"},
... {"type":"any"},
... {"type":"number"},
... {"type":"integer"}
... ]
... }
... }
... }
... ]
... }
>>> validictory.validate(data,schema)
Catch ValueErrors to handle validation issues:
>>> import validictory
>>>
>>> try:
... validictory.validate("simplejson", {"type":"string","minLength":15})
... except ValueError, error:
... print error
...
Length of value 'simplejson' for field '_data' must be greater than or equal to 15
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
validictory-0.7.0.tar.gz
(12.8 kB
view details)
File details
Details for the file validictory-0.7.0.tar.gz.
File metadata
- Download URL: validictory-0.7.0.tar.gz
- Upload date:
- Size: 12.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2e86e538579e5af84adec08168117c10d22f3c1992b8ca388b813d88860d661
|
|
| MD5 |
8476722b08a6f353e1804694f3ac22c4
|
|
| BLAKE2b-256 |
db4d61eea96403e7dbbff1d189c75a72c4e43668c2a77dabcfc2f641a18b1cbc
|