A pure python runtime type enforcer for type annotations. Enforce types in python functions and methods.
Make sure you have Python 3.11.x (or higher) installed on your system. You can download it here.
- Unsupported python versions can be used, however newer features will not be available.
- For 3.7: use type_enforced==0.0.16 (only very basic type checking is supported)
- For 3.8: use type_enforced==0.0.16 (only very basic type checking is supported)
- For 3.9: use type_enforced<=1.9.0 (
staticmethod, union with|andfrom __future__ import annotationstypechecking are not supported) - For 3.10: use type_enforced<=1.10.2 (
from __future__ import annotationsmay cause errors (EG: when using staticmethods and classmethods))
pip install type_enforced
import type_enforced
@type_enforced.Enforcer(enabled=True, strict=True, clean_traceback=True)
def my_fn(a: int , b: int | str =2, c: int =3) -> None:
pass- Note:
enabled=Trueby default if not specified. You can setenabled=Falseto disable type checking for a specific function, method, or class. This is useful for a production vs debugging environment or for undecorating a single method in a larger wrapped class. - Note:
strict=Trueby default if not specified. You can setstrict=Falseto disable exceptions being raised when type checking fails. Instead, a warning will be printed to the console. - Note:
clean_traceback=Trueby default if not specified. This modifies the excepthook temporarily when a type exception is raised such that only the relevant stack (stack items not from type_enforced) is shown.
type_enforcer contains a basic Enforcer wrapper that can be used to enforce many basic python typing hints. Technical Docs Here.
Enforcer can be used as a decorator for functions, methods, and classes. It will enforce the type hints on the function or method inputs and outputs. It takes in the following optional arguments:
enabled(True): A boolean to enable or disable type checking. IfTrue, type checking will be enforced. IfFalse, type checking will be disabled.strict(True): A boolean to enable or disable type mismatch exceptions. IfTrueexceptions will be raised when type checking fails. IfFalse, exceptions will not be raised but instead a warning will be printed to the console.
type_enforcer currently supports many single and multi level python types. This includes class instances and classes themselves. For example, you can force an input to be an int, a number int | float, an instance of the self defined MyClass, or a even a vector with list[int]. Items like typing.List, typing.Dict, typing.Union and typing.Optional are supported.
You can pass union types to validate one of multiple types. For example, you could validate an input was an int or a float with int | float or typing.Union[int, float].
Nesting is allowed as long as the nested items are iterables (e.g. typing.List, dict, ...). For example, you could validate that a list is a vector with list[int] or possibly typing.List[int].
Variables without an annotation for type are not enforced.
type_enforcedis a pure python type enforcer that does not require any special compiler or preprocessor to work.type_enforceduses the standard python typing hints and enforces them at runtime.- This means that you can use it in any python environment (3.11+) without any special setup.
type_enforcedis designed to be lightweight and easy to use, making it a great choice for both small and large projects.type_enforcedsupports complex (nested) typing hints, union types, and many of the standard python typing functions.type_enforcedis designed to be fast and efficient, with minimal overhead.type_enforcedoffers the fastest performance for enforcing large objects of complex types- Note: See the benchmarks for more information on the performance of each type checker.
- Function/Method Input Typing
- Function/Method Return Typing
- Dataclass Typing
- All standard python types (
str,list,int,dict, ...) - Union types
- typing.Union
|separated items (e.g.int | float)
- Nested types (e.g.
dict[str, int]orlist[int|float])- Note: Each parent level must be an iterable
- Specifically a variant of
list,set,tupleordict
- Specifically a variant of
- Note:
dictrequires two types to be specified (unions count as a single type)- The first type is the key type and the second type is the value type
- e.g.
dict[str, int|float]ordict[int, float]
- Note:
listandsetrequire a single type to be specified (unions count as a single type)- e.g.
list[int],set[str],list[float|str]
- e.g.
- Note:
tupleAllows forNtypes to be specified- Each item refers to the positional type of each item in the tuple
- Support for ellipsis (
...) is supported if you only specify two types and the second is the ellipsis type- e.g.
tuple[int, ...]ortuple[int|str, ...]
- e.g.
- Note: Unions between two tuples are not supported
- e.g.
tuple[int, str] | tuple[str, int]will not work
- e.g.
- Deeply nested types are supported too:
dict[dict[int]]list[set[str]]
- Note: Each parent level must be an iterable
- Many of the
typing(package) functions and methods including:- Standard typing functions:
ListSetDictTuple
UnionOptionalAnySized- Essentially creates a union of:
list,tuple,dict,set,str,bytes,bytearray,memoryview,range
- Note: Can not have a nested type
- Because this does not always meet the criteria for
Nested typesabove
- Because this does not always meet the criteria for
- Essentially creates a union of:
Literal- Only allow certain values to be passed. Operates slightly differently than other checks.
- e.g.
Literal['a', 'b']will require any passed values that are equal (==) to'a'or'b'.- This compares the value of the passed input and not the type of the passed input.
- Note: Multiple types can be passed in the same
Literalas acceptable values.- e.g. Literal['a', 'b', 1, 2] will require any passed values that are equal (
==) to'a','b',1or2.
- e.g. Literal['a', 'b', 1, 2] will require any passed values that are equal (
- Note: If type is a
str | Literal['a', 'b']- The check will validate that the type is a string or the value is equal to
'a'or'b'. - This means that an input of
'c'will pass the check since it matches the string type, but an input of1will fail.
- The check will validate that the type is a string or the value is equal to
- Note: If type is a
int | Literal['a', 'b']- The check will validate that the type is an int or the value is equal to
'a'or'b'. - This means that an input of
'c'will fail the check, but an input of1will pass.
- The check will validate that the type is an int or the value is equal to
- Note: Literals stack when used with unions.
- e.g.
Literal['a', 'b'] | Literal[1, 2]will require any passed values that are equal (==) to'a','b',1or2.
- e.g.
Callable- Essentially creates a union of:
staticmethod,classmethod,types.FunctionType,types.BuiltinFunctionType,types.MethodType,types.BuiltinMethodType,types.GeneratorType
- Essentially creates a union of:
- Note: Other functions might have support, but there are not currently tests to validate them
- Feel free to create an issue (or better yet a PR) if you want to add tests/support
- Standard typing functions:
Constraintvalidation.- This is a special type of validation that allows passed input to be validated.
- Standard and custom constraints are supported.
- Constraints are not actually types. They are type_enforced specific validators and may cause issues with other runtime or static type checkers like
mypy. - This is useful for validating that a passed input is within a certain range or meets a certain criteria.
- Note: Constraints stack when used with unions.
- e.g.
int | Constraint(ge=0) | Constraint(le=5)will require any passed values to be integers that are greater than or equal to0and less than or equal to5.
- e.g.
- Note: The constraint is checked after type checking occurs and operates independently of the type checking.
- This operates differently than other checks (like
Literal) and is evaluated post type checking. - For example, if you have an annotation of
str | Constraint(ge=0), this will always raise an exception since if you pass a string, it will raise on the constraint check and if you pass an integer, it will raise on the type check.
- This operates differently than other checks (like
- Note: See the example below or technical constraint and generic constraint docs for more information.
- This is a special type of validation that allows passed input to be validated.
>>> import type_enforced
>>> @type_enforced.Enforcer
... def my_fn(a: int , b: int|str =2, c: int =3) -> None:
... pass
...
>>> my_fn(a=1, b=2, c=3)
>>> my_fn(a=1, b='2', c=3)
>>> my_fn(a='a', b=2, c=3)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: TypeEnforced Exception (my_fn): Type mismatch for typed variable `a`. Expected one of the following `[<class 'int'>]` but got `<class 'str'>` with value `a` instead.import type_enforced
import typing
@type_enforced.Enforcer
def my_fn(
a: dict[str,dict[str, int|float]], # Note: For dicts, the key is the first type and the value is the second type
b: list[typing.Set[str]] # Could also just use set
) -> None:
return None
my_fn(a={'i':{'j':1}}, b=[{'x'}]) # Success
my_fn(a={'i':{'j':'k'}}, b=[{'x'}]) # Error =>
# TypeError: TypeEnforced Exception (my_fn): Type mismatch for typed variable `a['i']['j']`. Expected one of the following `[<class 'int'>, <class 'float'>]` but got `<class 'str'>` with value `k` instead.Type enforcer can be applied to methods individually:
import type_enforced
class my_class:
@type_enforced.Enforcer
def my_fn(self, b:int):
passYou can also enforce all typing for all methods in a class by decorating the class itself.
import type_enforced
@type_enforced.Enforcer
class my_class:
def my_fn(self, b:int):
pass
def my_other_fn(self, a: int, b: int | str):
passYou can also enforce types on staticmethods and classmethods if you are using python >= 3.10. If you are using a python version less than this, classmethods and staticmethods methods will not have their types enforced.
import type_enforced
@type_enforced.Enforcer
class my_class:
@classmethod
def my_fn(self, b:int):
pass
@staticmethod
def my_other_fn(a: int, b: int | str):
passDataclasses are suported too.
import type_enforced
from dataclasses import dataclass
@type_enforced.Enforcer
@dataclass
class my_class:
foo: int
bar: strYou can skip enforcement if you add the argument enabled=False in the Enforcer call.
- This is useful for a production vs debugging environment.
- This is also useful for undecorating a single method in a larger wrapped class.
- Note: You can set
enabled=Falsefor an entire class or simply disable a specific method in a larger wrapped class. - Note: Method level wrapper
enabledvalues take precedence over class level wrappers.
import type_enforced
@type_enforced.Enforcer
class my_class:
def my_fn(self, a: int) -> None:
pass
@type_enforced.Enforcer(enabled=False)
def my_other_fn(self, a: int) -> None:
passType enforcer can enforce constraints for passed variables. These constraints are validated after any type checks are made.
To enforce basic input values are integers greater than or equal to zero, you can use the Constraint class like so:
import type_enforced
from type_enforced.utils import Constraint
@type_enforced.Enforcer()
def positive_int_test(value: int |Constraint(ge=0)) -> bool:
return True
positive_int_test(1) # Passes
positive_int_test(-1) # Fails
positive_int_test(1.0) # FailsTo enforce a GenericConstraint:
import type_enforced
from type_enforced.utils import GenericConstraint
CustomConstraint = GenericConstraint(
{
'in_rgb': lambda x: x in ['red', 'green', 'blue'],
}
)
@type_enforced.Enforcer()
def rgb_test(value: str | CustomConstraint) -> bool:
return True
rgb_test('red') # Passes
rgb_test('yellow') # FailsType enforcer can enforce class instances and classes. There are a few caveats between the two.
To enforce a class instance, simply pass the class itself as a type hint:
import type_enforced
class Foo():
def __init__(self) -> None:
pass
@type_enforced.Enforcer
class my_class():
def __init__(self, object: Foo) -> None:
self.object = object
x=my_class(Foo()) # Works great!
y=my_class(Foo) # Fails!Notice how an initialized class instance Foo() must be passed for the enforcer to not raise an exception.
To enforce an uninitialized class object use typing.Type[classHere] on the class to enforce inputs to be an uninitialized class:
import type_enforced
import typing
class Foo():
def __init__(self) -> None:
pass
@type_enforced.Enforcer
class my_class():
def __init__(self, object_class: typing.Type[Foo]) -> None:
self.object = object_class()
y=my_class(Foo) # Works great!
x=my_class(Foo()) # FailsBy default, type_enforced will check for subclasses of a class when validating types. This means that if you pass a subclass of the expected class, it will pass the type check.
Note: Uninitialized class objects that are passed are not checked for subclasses.
import type_enforced
class Foo:
pass
class Bar(Foo):
pass
class Baz:
pass
@type_enforced.Enforcer
def my_fn(custom_class: Foo):
pass
my_fn(Foo()) # Passes as expected
my_fn(Bar()) # Passes as expected
my_fn(Baz()) # Raises TypeError as expectedThe main changes in version 2.0.0 revolve around migrating towards the standard python typing hint process and away from the original type_enfoced type hints (as type enforced was originally created before the | operator was added to python).
- Support for python3.10 has been dropped.
- List based union types are no longer supported.
- For example
[int, float]is no longer a supported type hint. - Use
int|floatortyping.Union[int, float]instead.
- For example
- Dict types now require two types to be specified.
- The first type is the key type and the second type is the value type.
- For example,
dict[str, int|float]ordict[int, float]are valid types.
- Tuple types now allow for
Ntypes to be specified.- Each item refers to the positional type of each item in the tuple.
- Support for ellipsis (
...) is supported if you only specify two types and the second is the ellipsis type.- For example,
tuple[int, ...]ortuple[int|str, ...]are valid types.
- For example,
- Note: Unions between two tuples are not supported.
- For example,
tuple[int, str] | tuple[str, int]will not work.
- For example,
- Constraints and Literals can now be stacked with unions.
- For example,
int | Constraint(ge=0) | Constraint(le=5)will require any passed values to be integers that are greater than or equal to0and less than or equal to5. - For example,
Literal['a', 'b'] | Literal[1, 2]will require any passed values that are equal (==) to'a','b',1or2.
- For example,
- Literals now evaluate during the same time as type checking and operate as OR checks.
- For example,
int | Literal['a', 'b']will validate that the type is an int or the value is equal to'a'or'b'.
- For example,
- Constraints are still are evaluated after type checking and operate independently of the type checking.
If you find a bug or are looking for a new feature, please open an issue on GitHub.
If you need help, please open an issue on GitHub.
Contributions are welcome! Please open an issue or submit a pull request.
To avoid extra development overhead, we expect all developers to use a unix based environment (Linux or Mac). If you use Windows, please use WSL2.
For development, we test using Docker so we can lock system deps and swap out python versions easily. However, you can also use a virtual environment if you prefer. We provide a test script and a prettify script to help with development.
- Fork the repo and clone it locally.
- Make your modifications.
- Use Docker or a virtual environment to run tests and make sure they pass.
- Prettify your code.
- DO NOT GENERATE DOCS.
- We will generate the docs and update the version number when we are ready to release a new version.
- Only commit relevant changes and add clear commit messages.
- Atomic commits are preferred.
- Submit a pull request.
Make sure Docker is installed and running.
-
Create a docker container and drop into a shell
./run.sh
-
Run all tests (see ./utils/test.sh)
./run.sh test
-
Prettify the code (see ./utils/prettify.sh)
./run.sh prettify
-
Note: You can and should modify the
Dockerfileto test different python versions.
- Create a virtual environment
python3.XX -m venv venv- Replace
3.XXwith your python version (3.11 or higher)
- Replace
- Activate the virtual environment
source venv/bin/activate
- Install the development requirements
pip install -r requirements/dev.txt
- Run Tests
./utils/test.sh
- Prettify Code
./utils/prettify.sh