JSON validation framework for Python.
Project description
incoming is a JSON validation framework.
Overview
Validating anything can get really messy. JSON being one of the most used formats for data exchange, incoming aims at solving the problem of validating JSON with structure and ease.
incoming is a small framework for validating JSON. Its up to you where and how to use it. A common use-case (and the primary reason why I wrote this framework) was using it for writing HTTP servers to validate incoming JSON payload.
Features
Classes that can be sub-classed for writing structured validators.
Basic validators (or datatypes) for performing common validations, like string, numbers, booleans, lists, nested JSON, etc.
Allows extending validators (datatypes) to write your own.
Allows writing callables for validating values.
Captures errors during validation and returns a complete report of errors.
Allows reporting different errors for different validation test failures for the same value.
Installation
Installation is simple.
pip install incoming
Basic Usage
import json
from datetime import date
from incoming import datatypes, PayloadValidator
class MovieValidator(PayloadValidator):
name = datatypes.String()
rating = datatypes.Function('validate_rating',
error='Rating must be in between 1 and 10.')
actors = datatypes.Array()
is_3d = datatypes.Boolean()
release_year = datatypes.Function('validate_release_year',
error=('Release year must be in between '
'1800 and current year.'))
# validation method can be a regular method
def validate_rating(self, val, *args, **kwargs):
if not isinstance(val, int):
return False
if val < 1 or val > 10:
return False
return True
# validation method can be a staticmethod as well
@staticmethod
def validate_release_year(val, *args, **kwargs):
if not isinstance(val, int):
return False
if val < 1800 or val > date.today().year:
return False
return True
payload = {
'name': 'Avengers',
'rating': 5,
'actors': [
'Robert Downey Jr.',
'Samual L. Jackson',
'Scarlett Johansson',
'Mark Ruffalo'
],
'is_3d': True,
'release_year': 2012
}
result, errors = MovieValidator().validate(payload)
assert result and errors is None, 'Validation failed.\n%s' % json.dumps(errors, indent=2)
payload = {
'name': 'Avengers',
'rating': 11,
'actors': [
'Robert Downey Jr.',
'Samual L. Jackson',
'Scarlett Johansson',
'Mark Ruffalo'
],
'is_3d': 'True',
'release_year': 2014
}
result, errors = MovieValidator().validate(payload)
assert result and errors is None, 'Validation failed.\n%s' % json.dumps(errors, indent=2)
Run the above script, you shall get a response like so:
Traceback (most recent call last): File "code.py", line 67, in <module> assert result and errors is None, 'Validation failed.\n%s' % json.dumps(errors, indent=2) AssertionError: Validation failed. { "rating": [ "Rating must be in between 1 and 10." ], "is_3d": [ "Invalid data. Expected a boolean value." ], "release_year": [ "Release year must be in between 1800 and current year." ] }
Documentation
Documentation is available on Read The Docs.
Tests
Run tests like so:
python setup.py test
or:
py.test incoming
Licence
See LICENCE.
The MIT License (MIT)
Copyright (c) 2013 Vaidik Kapoor
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
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 incoming-0.2.4.tar.gz
.
File metadata
- Download URL: incoming-0.2.4.tar.gz
- Upload date:
- Size: 10.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | acae87e6dfe73f0090e2857a3b95cb0dfcf915fe116d69825bc887187fdf5848 |
|
MD5 | ffbb309fc1288a0fb4fb79e61036090f |
|
BLAKE2b-256 | 66f347f92e4b6b2167e3a497f93bf42cf5707ef69db9f74b1aee4068a6fc4941 |