Skip to main content

A simple library for runtime type-checking.

Project description

Python versions PyPI version PyPI status Checked with Mypy Documentation Status Python package status standard-readme compliant

Typing-validation is a small library to perform runtime validation of Python objects using PEP 484 type hints.

Install

You can install the latest release from PyPI as follows:

pip install --upgrade typing-validation

Usage

The core functionality of this library is provided by the validate function:

>>> from typing_validation import validate

The validate function is invoked with a value and a type as its arguments and it returns nothing when the given value is valid for the given type:

>>> validate(12, int)
True # no error raised => 12 is a valid int

If the value is invalid for the given type, the validate function raises a TypeError:

>>> validate(12, str)
TypeError: Runtime validation error raised by validate(val, t), details below.
For type <class 'str'>, invalid value: 12

For nested types (e.g. parametric collection/mapping types), the full chain of validation failures is shown by the type error:

>>> validate([0, 1, "hi"], list[int])
TypeError: Runtime validation error raised by validate(val, t), details below.
For type list[int], invalid value at idx: 2
  For type <class 'int'>, invalid value: 'hi'

The function is_valid is a variant of the validate function which returns False in case of validation failure, instead of raising TypeError:

>>> from typing_validation import is_valid
>>> is_valid([0, 1, "hi"], list[int])
False

The function latest_validation_failure can be used to access detailed information immediately after a failure:

>>> from typing_validation import latest_validation_failure
>>> is_valid([0, 1, "hi"], list[int])
False
>>> failure = latest_validation_failure()
>>> print(failure)
Runtime validation error raised by validate(val, t), details below.
For type list[int], invalid value at idx: 2
  For type <class 'int'>, invalid value: 'hi'

Please note that latest_validation_failure clears the internal failure logs after returning the latest failure, so the latter must be manually stored if it needs to be accessed multiple times.

API

For the full API documentation, see https://typing-validation.readthedocs.io/

Contributing

Please see CONTRIBUTING.md.

License

MIT © Hashberg Ltd.

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

typing-validation-1.2.8.post3.tar.gz (771.7 kB view details)

Uploaded Source

Built Distribution

typing_validation-1.2.8.post3-py3-none-any.whl (18.9 kB view details)

Uploaded Python 3

File details

Details for the file typing-validation-1.2.8.post3.tar.gz.

File metadata

File hashes

Hashes for typing-validation-1.2.8.post3.tar.gz
Algorithm Hash digest
SHA256 c5b6f05b343a087de87d19cac6ef1d2b91b99c740cb48dd115be362574b67e07
MD5 8af8fbb436630ba7531afadc38272cdf
BLAKE2b-256 b9b25c7a0e8a283d546cf1fe33921a73aa282c2e5aa9fbdcee9e2f4fa2810c32

See more details on using hashes here.

File details

Details for the file typing_validation-1.2.8.post3-py3-none-any.whl.

File metadata

File hashes

Hashes for typing_validation-1.2.8.post3-py3-none-any.whl
Algorithm Hash digest
SHA256 3b03a37e8feee4bc01a89f478e7f2ac3fb107ad1d4574e0e7a7392ff90337ba2
MD5 9381d730104537761c0b6256e1e22845
BLAKE2b-256 d25ed548f540479313d66b2d3b3db004215e9130e265f43ae16a90dadb088777

See more details on using hashes here.

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