Metadata-Version: 2.1
Name: decorpy
Version: 0.3
Summary: A package exposing a collection of ready-to-use python decorators.
Home-page: https://github.com/alexZajac/decorpy
Author: Alexandre Zajac
Author-email: work@alexandrezajac.com
License: UNKNOWN
Download-URL: https://github.com/alexZajac/decorpy/archive/v_02.tar.gz
Description: # Decorpy
        
        ![Travis](https://travis-ci.org/alexZajac/decorpy.svg?branch=master)
        [![Coverage Status](https://coveralls.io/repos/github/alexZajac/decorpy/badge.svg)](https://coveralls.io/github/alexZajac/decorpy)
        [![Updates](https://pyup.io/repos/github/alexZajac/decorpy/shield.svg)](https://pyup.io/repos/github/alexZajac/decorpy/)
        [![Python 3](https://pyup.io/repos/github/alexZajac/decorpy/python-3-shield.svg)](https://pyup.io/repos/github/alexZajac/decorpy/)
        
        A collection of python decorators including time measurement, type checking and debugging.
        
        ## Installation
        
        Install the package directly using `Pip` with [Pypi](https://pypi.org/project/decorpy/) 
        
        `pip install decorpy`
        
        Or using `git`
        
        `git clone https://github.com/alexZajac/decorpy.git`
        
        `cd decorpy`
        
        `python setup.py install`
        
        ## Examples
        
        ### Measure execution time of a function
        [Link to gist](https://gist.github.com/alexZajac/f5b594307848f0b23b9ca4fea202633d)
        
        ### Debugging a function with its signature and return value
        
        [Link to gist](https://gist.github.com/alexZajac/e4d222757a1095abf6f8cbdcef1e1870)
        
        ### Runtime type-checking on function parameters and return
        
        [Link to gist](https://gist.github.com/alexZajac/fe96e566e4f4aab4f80312abb49d25e8)
        
        
        
        
        
Keywords: decorator,timer,debug,typing
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
