Skip to main content

Run-time type checker for Python

Project description

Build Status Code Coverage

This library provides run-time type checking for functions defined with argument type annotations.

The typing module introduced in Python 3.5 (and available on PyPI for older versions of Python 3) is supported. See below for details.

There are three principal ways to use type checking, each with its pros and cons:

  1. calling check_argument_types() from within the function body:

    • debugger friendly (except when running with the pydev debugger with the C extension installed)

    • cannot check the type of the return value

    • does not work reliably with dynamically defined type hints (e.g. in nested functions)

  2. decorating the function with @typechecked:

    • 100% reliable at finding the function object to be checked (does not need to check the garbage collector)

    • can check the type of the return value

    • adds an extra frame to the call stack for every call to a decorated function

  3. using with TypeChecker('packagename')::

    • emits warnings instead of raising TypeError

    • eliminates boilerplate

    • multiple TypeCheckers can be stacked/nested

    • noninvasive (only records type violations; does not raise exceptions)

    • does not work reliably with dynamically defined type hints (e.g. in nested functions)

    • may cause problems with badly behaving debuggers or profilers

If a function is called with incompatible argument types or a @typechecked decorated function returns a value incompatible with the declared type, a descriptive TypeError exception is raised.

Type checks can be fairly expensive so it is recommended to run Python in “optimized” mode (python -O or setting the PYTHONOPTIMIZE environment variable) when running code containing type checks in production. The optimized mode will disable the type checks, by virtue of removing all assert statements and setting the __debug__ constant to False.

Using check_argument_types():

from typeguard import check_argument_types

def some_function(a: int, b: float, c: str, *args: str):
    assert check_argument_types()
    ...

Using @typechecked:

from typeguard import typechecked

@typechecked
def some_function(a: int, b: float, c: str, *args: str) -> bool:
    ...

To enable type checks even in optimized mode:

@typechecked(always=True)
def foo(a: str, b: int, c: Union[str, int]) -> bool:
    ...

Using TypeChecker:

from warnings import filterwarnings

from typeguard import TypeChecker, TypeWarning

# Display all TypeWarnings, not just the first one
filterwarnings('always', category=TypeWarning)

# Run your entire application inside this context block
with TypeChecker(['mypackage', 'otherpackage']):
    mypackage.run_app()

# Alternatively, manually start (and stop) the checker:
checker = TypeChecker('mypackage')
checker.start()
mypackage.start_app()

To directly check a value against the specified type:

from typeguard import check_type

check_type('variablename', [1234], List[int])

The following types from the typing package have specialized support:

Type

Notes

Callable

Argument count is checked but types are not (yet)

Dict

Keys and values are typechecked

List

Contents are typechecked

NamedTuple

Field values are typechecked

Set

Contents are typechecked

Tuple

Contents are typechecked

Type

TypeVar

Constraints, bound types and co/contravariance are supported but custom generic types are not (due to type erasure)

Union

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

typeguard-2.4.1.tar.gz (21.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

typeguard-2.4.1-py3-none-any.whl (11.0 kB view details)

Uploaded Python 3

File details

Details for the file typeguard-2.4.1.tar.gz.

File metadata

  • Download URL: typeguard-2.4.1.tar.gz
  • Upload date:
  • Size: 21.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.7

File hashes

Hashes for typeguard-2.4.1.tar.gz
Algorithm Hash digest
SHA256 c708834c5b6ca8e2ff333d0519d37f64ae482d728c419737144e2f89c389ab99
MD5 6c26ada81a079b61dd96d3ba49f4f131
BLAKE2b-256 772830f72712d07d9e7a4d86971b87b04caf151204bc58c69ef70adc8eacde2e

See more details on using hashes here.

File details

Details for the file typeguard-2.4.1-py3-none-any.whl.

File metadata

  • Download URL: typeguard-2.4.1-py3-none-any.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.7

File hashes

Hashes for typeguard-2.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e2817f4ced1faff840b323793843ffa5da187b5bcc621e1bd99135c1af7f78b5
MD5 ac7ee5e6c24eec39cffd0641c2f4860a
BLAKE2b-256 d79ac914f5825973b43dabec168e65388df3a1985237cc8543299c041ef38b39

See more details on using hashes here.

Supported by

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