Initial commit

Transfer Didier to this repo
This commit is contained in:
Stijn De Clercq 2020-10-13 21:02:40 +02:00
commit f1138c3b56
116 changed files with 353825 additions and 0 deletions

0
decorators/__init__.py Normal file
View file

7
decorators/help.py Normal file
View file

@ -0,0 +1,7 @@
# Decorator that assigns a help category to a function
def Category(category, unpack=False):
def decorator(func):
setattr(func, "category", category)
setattr(func, "unpack", unpack)
return func
return decorator