Metadata-Version: 2.0
Name: colander-tools
Version: 0.6.0
Summary: Extensions to `colander`, particularly useful as part of REST API validation.
Home-page: https://github.com/platformsh/colander-tools
Author: Platform.sh
Author-email: sayhello@platform.sh
License: BSD
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Requires-Dist: colander

Colander Tools
====================================

This package is a set of extensions to ``colander`` especially useful when
implementing REST APIs.


Strict types
-------------------

The ``colander_tools`` package includes a series of strict types. Those types
follow the `Postel's law <https://en.wikipedia.org/wiki/Robustness_principle>`_:
they are strict on serialize and loose on deserialize.

Included are:

* ``Integer``
* ``Float``
* ``Boolean``
* ``String``


