| Server IP : 162.253.224.18 / Your IP : 216.73.217.81 Web Server : Apache System : Linux s18.infinitysrv.com 3.10.0-962.3.2.lve1.5.89.el7.x86_64 #1 SMP Thu Jul 9 15:55:31 UTC 2026 x86_64 User : dejavumk ( 1184) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/alt/python35/lib/python3.5/site-packages/cerberus/ |
Upload File : |
"""
Extensible validation for Python dictionaries.
:copyright: 2012-2016 by Nicola Iarocci.
:license: ISC, see LICENSE for more details.
Full documentation is available at http://python-cerberus.org/
"""
from __future__ import absolute_import
from cerberus.validator import Validator, DocumentError
from cerberus.schema import (rules_set_registry, schema_registry, Registry,
SchemaError)
__version__ = "1.1"
__all__ = [
DocumentError.__name__,
Registry.__name__,
SchemaError.__name__,
Validator.__name__,
'schema_registry',
'rules_set_registry'
]