├── .gitignore ├── readme.md ├── setup.py ├── test.py └── typify ├── __init__.py ├── helpers.py ├── matchers.py └── typify.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | env 3 | dist 4 | MANIFEST 5 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattyO/typify/HEAD/readme.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattyO/typify/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattyO/typify/HEAD/test.py -------------------------------------------------------------------------------- /typify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattyO/typify/HEAD/typify/__init__.py -------------------------------------------------------------------------------- /typify/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattyO/typify/HEAD/typify/helpers.py -------------------------------------------------------------------------------- /typify/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattyO/typify/HEAD/typify/matchers.py -------------------------------------------------------------------------------- /typify/typify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattyO/typify/HEAD/typify/typify.py --------------------------------------------------------------------------------