Metadata-Version: 1.0
Name: thunderargs
Version: 0.3.1a5
Summary: Let you use function annotations (PEP 3107) to parseand validate arguments
Home-page: https://github.com/uthunderbird/thunderargs
Author: uthunderbird
Author-email: undead.thunderbird@gmail.com
License: JSON license
Description: =========
        Thunderargs
        =========
        
        Abstract
        --------
        
        This library helps you to validate function parameters.
        
        
        Installation
        ------------
        
        .. code-block:: bash
        
            sudo pip install thunderargs
        
        Usage
        -----
        
        You can use it like this:
        
        .. code-block:: python
        
            from thunderargs import Arg
            from thunderargs.endpoint import Endpoint
        
        
            @Endpoint
            def max_int(x: Arg(int), y: Arg(int)):
                return max(x,y)
        
        
        Read the tests for more examples.
Platform: UNKNOWN
