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)
# nothing is returned => 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'

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.0.tar.gz (770.6 kB view details)

Uploaded Source

Built Distribution

typing_validation-1.2.0-py3-none-any.whl (18.7 kB view details)

Uploaded Python 3

File details

Details for the file typing-validation-1.2.0.tar.gz.

File metadata

  • Download URL: typing-validation-1.2.0.tar.gz
  • Upload date:
  • Size: 770.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for typing-validation-1.2.0.tar.gz
Algorithm Hash digest
SHA256 7de5b3db7c522cf6a3fba60cc33e2a0e907aaf7f6e13e3344b3c040f7b22971f
MD5 94a506c607cb2fb4f49a4a3fba5c8188
BLAKE2b-256 3d9adc0ffec5db951a2d974881543ac111fe4fd7c14b3e33b46a3fb0a73ab382

See more details on using hashes here.

File details

Details for the file typing_validation-1.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for typing_validation-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1b397deeca23f4d46fb23be8f8436b2ba1cbeb30129a76dcf6712b49f32b8bdc
MD5 fc4dab09ad17fa1893b4497a12eaa006
BLAKE2b-256 dbfdceb010b97f76a29aeedea54b40bb1451bd6c4084f5a18183edfe7d4fd262

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