Course PyLadies Ostrava Python and its libraries autumn 2020
https://naucse.python.cz/2020/pyladies-ostrava-podzim-pokrocili/
- Write a decorator that adds a list of the function name and arguments to the function - it is suitable for debugging .
- Write a decorator that measures how long function works and prints the result. Can be combined with first decorator.
- Write any custom decorator.
- If an exception occurs in the function, the decorator provide a link to google and start searching the specific error.
- Write a decorator who forbids function "print".
- File 'my_decorator.py' contains decorators.
- Files task*.py contains simple examples of decorator's usage.