I need to find a way to get a list of all of an SQLAlchemy models hybrid properties.
For relationships on a Person instance I can do something like:
from sqlalchemy.inspection import inspect
inspect(person.__class__).relationships
Is there something like:
inspect(person.__class__).hybrid_properties