Skip to content

onstash/typy_checker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Typy Checker

Type-Checking Function Arguments for Humans™

Typy_checker is a library that checks the type of the arguments of a given function. It exposes a decorator that you can use to retain your sanity.

How to install it?

  • Python 3

    git clone git@github.com:onstash/typy_checker.git
    # or
    git clone https://github.com/onstash/typy_checker.git
    cd typy_checker
    python3 setup.py install
  • Python 2

    git clone git@github.com:onstash/typy_checker.git
    # or
    git clone https://github.com/onstash/typy_checker.git
    cd typy_checker
    python setup.py install

How to use it?

from typy_checker import type_checker

valid_types = (int, float)
@type_checker(foo=valid_types, scooby=valid_types)
def add(foo, scooby):
    return foo + scooby

Calling add(1, 2) will give the intended result while calling add([2], [3]) will throw an error.

How to contribute?

You can contribute in many ways. Head over to the GitHub repo's issues page here, create an issue if it's not there and let's discuss. This repo follows Kent Dodds' all-contributors philosophy.