Skip to main content

Validate like maat

Project description

Maat

Build Status

Maat is a easy extensible transformation and validation library for Python. Build for corner cases.

The project is named after the ancient egyption god Maat. Her scale was used to weight the heart described in the book of the dead.

Since the scale is magical besides validating values it can transform them too.

Maat does dictionary to dictionary validation and transformation. from those two dictionary an new dictionary is created. Each value of dictionary to be validated is passed through their validator and transfomation functions

Examples

Validate that input name is of type str and is either 'John Doe' or 'Jane Doe'. Throws Invalid exception when validation fails, Maat has a fail fast policy.

    >>> import maat
    >>> user = {'name': 'John Doe'}
    >>> user_validation = {'name': {'validator': 'str', 'choices': ['John Doe', 'Jane Doe']}}
    >>> maat.scale(user, user_validation)
    {'name': 'John Doe'}
    
    >>> maat.scale({'name': 'peter pan'}, user_validation)
    Traceback (most recent call last):
    maat.validation.Invalid: key: "name" contains invalid item "peter pan": not in valid choices ['John Doe', 'Jane Doe']
    
    >>> maat.scale({'name': 42}, user_validation)
    Traceback (most recent call last)
    maat.validation.Invalid: key: "name" contains invalid item "42" with type "int": not of type string
    
    >>>  maat.scale({'user': 'John Doe'}, user_validation)
    Traceback (most recent call last)
    maat.validation.Invalid: invalid keys: user :expected keys: name
    
    >>> maat.scale({'name': 'Jane Doe'}, user_validation)
    {'name': 'Jane Doe'}

Authors

  • Melvin Bijman

License

This project is licensed under the MIT License - see the LICENSE file for details

Note

This project is being used in production by multiple companies.

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

Maat-0.8.6.tar.gz (5.4 kB view hashes)

Uploaded Source

Built Distribution

Maat-0.8.6-py3-none-any.whl (5.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page