Metadata-Version: 2.1
Name: checkparam
Version: 0.1
Summary: Module for checking input parameters by type
Home-page: https://github.com/sidan93/check_params
Author: Sidorov A.B.
Author-email: sidan93@gmail.com
License: MIT
Download-URL: https://github.com/sidan93/check_params/archive/v0.1.tar.gz
Description: # About
        Module for checking input parameters by type
        
        # Simple Start
        
        1. Install package from pip
        ```
        pip install checkparam
        ```
        
        2. Use
        ```
        from checkparam import check_param
        
        @check_param()
        def my_func(var_one: int, var_two: typing.Optional[int]): 
          ...
          
        my_func(4, None)       # all good
        my_func('test', None)  # Exception from check_param, becouse 'test' is not type 'int'
        
        ```
        
Keywords: check param,checkparam,params,function arguments
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
