1
0
Fork 0
mirror of https://github.com/vinta/awesome-python.git synced 2024-11-13 11:16:10 -05:00

Adds Cerberus to Data Validation

disclaimer: i recently contributed to the project. and i still think it's awesome.
This commit is contained in:
Frank Sachsenheim 2015-07-09 05:00:48 +02:00
parent fb09dfcde6
commit a439f0a9bf

View file

@ -683,6 +683,7 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
*Libraries for validating data. Used for forms in many cases.*
* [Cerberus](http://python-cerberus.org) - A mappings-validator with a variety of rules, normalization-features and simple customization that uses a pythonic schema-definition.
* [voluptuous](https://github.com/alecthomas/voluptuous) - A Python data validation library. It is primarily intended for validating data coming into Python as JSON, YAML, etc.
* [colander](http://docs.pylonsproject.org/projects/colander/) - A system for validating and deserializing data obtained via XML, JSON, an HTML form post or any other equally simple data serialization.
* [schema](https://github.com/halst/schema) - A library for validating Python data structures.