general purpose python data validator
Project description
warning: | :warning: As of 2018 this library is deprecated, please consider using jsonschema (https://pypi.python.org/pypi/jsonschema) instead. |
---|
A general purpose Python data validator.
Works with Python 2.7 and Python 3.3+
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("something", {"type":"string"})
Parsing a more complex JSON document:
>>> import json >>> import validictory >>> >>> data = json.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("something", {"type":"string","minLength":15}) ... except ValueError, error: ... print(error) ... Length of value 'something' 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
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size validictory-1.1.2-py2.py3-none-any.whl (24.1 kB) | File type Wheel | Python version py2.py3 | Upload date | Hashes View hashes |
Filename, size validictory-1.1.2.tar.gz (18.2 kB) | File type Source | Python version None | Upload date | Hashes View hashes |
Close
Hashes for validictory-1.1.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb7ec9d811f3cf062fb943ce369a9b34a9f291037217ecf5a40a5f2421d29c0a |
|
MD5 | ffd27b2c4fc626d47d4aa762c6e65db6 |
|
BLAKE2-256 | 4fca80c04ee324233dacca3258153e7c71fc667fe032e0b21bae788f83fe4103 |