type-check

Type check decorator for python


Keywords
type, check, safe
License
MIT
Install
pip install type-check==0.1.8

Documentation

PyPI

Type Check

Type check decorator for python

Installation:

pip3 install type-check

Usage:

Import type_check decorator:

from type_check import type_check

Usage in function:

@type_check
def my_func(arg: type = default) -> return_type:
    return return_type()

At class function, specify type of self with base type, for example:

@type_check
def __init__(self: object, arg: type = default):
    pass