typeguard 1.2.2
pip install typeguard==1.2.2
Released:
Run-time type checker for Python
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: Alex Grönholm
Classifiers
- Development Status
- Intended Audience
- License
- Programming Language
Project description
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 two principal ways to use type checking, each with its pros and cons:
- calling check_argument_types() from within the function body:
debugger friendly but cannot check the type of the return value
- decorating the function with @typechecked:
can check the type of the return value but adds an extra frame to the call stack for every call to a decorated function
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:
...
The following types from the typing package have specialized support:
Type |
Notes |
---|---|
Dict |
Keys and values are typechecked |
List |
Contents are typechecked |
Set |
Contents are typechecked |
Tuple |
Contents are typechecked |
Callable |
Argument count is checked but types are not (yet) |
TypeVar |
Constraints, bound types and co/contravariance are supported but custom generic types are not (due to type erasure) |
Union |
Project links
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: Alex Grönholm
Classifiers
- Development Status
- Intended Audience
- License
- Programming Language
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
Built Distribution
File details
Details for the file typeguard-1.2.2.tar.gz
.
File metadata
- Download URL: typeguard-1.2.2.tar.gz
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e112e71bbb7aac44c54dca680ed5c9934064de85b98e55b6ae4e6a49a27b2879 |
|
MD5 | 1f6d0cac53557cc86882707e84db2950 |
|
BLAKE2b-256 | e13a18a1cab3dd2131affcc2fe329378aaca9debc688c8b59c905518865c2e08 |
File details
Details for the file typeguard-1.2.2-py3-none-any.whl
.
File metadata
- Download URL: typeguard-1.2.2-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f4795a2af49f3b8af397c7de8fc625d1a6cd6974b5b112e1655ab50f488ad12 |
|
MD5 | d2d3f0d369b4e9fb04677de03f5ca734 |
|
BLAKE2b-256 | f47d041473ac66da8ef1fd404ed4c0f6f2a62f4c6873010ba2df2b5d961ac55f |