Advanced Python Decorator Topics
PyPI: functools
All Python Decorators
Python Class Decorators
Built-In Decorators
@staticmethod
@classmethod
@lru_cache
@property
Built-In Abstract Decorators
@abstractstaticmethod
@abstractclassmethod
@abstractmethod
@abstractproperty
*ASP Decorators*
@Aspect
@weave
Decorator Inputs
Decorations for Logging
Real Life Example
Static Method
‣
Logging Usage of Functions
Timing Function Calls
Class Method
- Page Contents
- Page Summary
When to use Decorators
- Testing performance
- Perform caching
- Verify permissions
- Run the same code on multiple functions
- Check arguments type at runtime
- Benchmark function calls
- Check metadata (permissions, roles, etc.)
- Metaprogramming
Ideas