I have a Model (which I'm using as an abstract base class), that has some common methods and properties.
SQLAlchemy allows creating properties and methods with @hybrid_property and @hybrid_method, but also the standard @property, @classmethod, @staticmethod decorators give me the results I'm after.
Are there any advantages and disadvantages using the SQLA decorators over the standard python decorators?
When should I use, or shouldn't use, the SQLA decorators?