SQLAlchemyモデルを文書化する正しい方法はありますか?フィールドの説明をクラスに直接入れて、なんとかして説明を取得できるようにしたいと思います。Djangoのhelp_textフィールドに沿った何か
class User(Base):
username = Column(u'username', String(255))
email = Column(u'email', String(255))
の線に沿った何か
class User(Base):
username = Column(u'username', String(255), description="System Username unique across all clusters")
email = Column(u'email', String(255), description="Email address of the User, and some other important info about it I would like to get at" )