decorlib

Python library with decorators for ease of development


Keywords
decorator, development, library, performance, helper
License
MIT
Install
pip install decorlib==0.1.2

Documentation

decorlib

Python library with decorators for ease of development

Usage

from decorlib import *

@performance
def my_function():
    pass

@retry(5, delay=3.0)
def my_functions():
    pass