PrimeDecs is a decorator library for python used for easier in-code debugging and other cool things.
| PrimeDecs | ||
| .gitignore | ||
| README.md | ||
| setup.py | ||
Installation
pip3 install --upgrade "git+https://git.leon.wtf/leon/primedecs"
Example code
from PrimeDecs.debugging import signature_and_return
from PrimeDecs import repeat
@signature_and_return
def some_function(some_arg):
pass
@repeat(6)
def greet(name):
print("Greetings, " + str(name))