general purpose python data validator
Project description
A general purpose Python data validator.
Works with Python 2.6+ and Python 3.2+
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
You can read more in the official documentation at Read the Docs.
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
validictory-0.9.1.tar.gz
(14.1 kB
view details)
File details
Details for the file validictory-0.9.1.tar.gz
.
File metadata
- Download URL: validictory-0.9.1.tar.gz
- Upload date:
- Size: 14.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b8c636dc56114070177bc1c1083e804eec628f6c580ee5cb8e9844e1ead6301 |
|
MD5 | f521ef655bb4f2c60afcaede190d86c2 |
|
BLAKE2b-256 | aa572b29d7886815854a648ad3503e616f2164a78467fdd603fa8adf0dee028e |