Skip to main content

Validation utilities

Project description

Documentation Status

easyvalidate

A Python package containing utilities for different types of validations:

  • Validation of types
  • Validation of values based on various conditions

Installation

You can install the package from PyPI using pip:

$ pip install easyvalidate

Feature Highlights

Typehint Validation

The package contains a decorator: validate_types(). Add it to any function you want to validate types for, but make sure you have type hints on your function:

import typing

from easyvalidate import validate_typehints

@validate_typehints()
def foo(x: int, y: typing.Union[int, str]):
    print(x, y)

foo(5, 10) # works
foo(5, 'hello!') # also works
foo(5, []) # error!

The decorator comes with a few arguments:

  • all: bool = True: whether to require that all arguments (except self) are type-hinted. It's enabled by default.
  • deep: bool = False: whether to recursively validate all members of collections passed to the function. This can be painfully slow on large datasets so it's disabled by default.

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

easyvalidate-0.0.2.tar.gz (15.6 kB view hashes)

Uploaded Source

Built Distribution

easyvalidate-0.0.2-py3-none-any.whl (16.9 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