Metadata-Version: 2.0
Name: type-check
Version: 0.1.6
Summary: Type check decorator for python
Home-page: UNKNOWN
License: UNKNOWN
Keywords: type check safe
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown

# 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:
    pass
```

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

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


