Metadata-Version: 2.1
Name: statity
Version: 0.0.1
Summary: Lib for checking types of functions arguments and returning data to accordance with annotating
Home-page: https://github.com/soogly/pystatity
Author: Andrey Suglobov
Author-email: sooglobov@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

Lib for checking types of functions arguments and returning data to accordance with annotating
===================

Installation:

    pip install pystatity

Usage:

    from pystatity import strict_types

    @strict_types
    def your_func(one: str, two: int ) -> tuple:
        return one, two

    your_func('one', 2)         # ok

    your_func('one', 'two')     # will raise WrongParametersType exception



