pyramid_basemodel:金字塔SQLAlchemy应用程序的全局基类 源码
pyramid_basemodel pyramid_basemodel是一个瘦的低级软件包,提供SQLAlchemy声明性Base和线程本地范围的Session ,可以由不同的软件包使用,而只需要绑定一次db引擎即可。 用法 您可以将它们用作声明性模型定义的基类,例如: from pyramid_basemodel import Base, BaseMixin, Session, save class MyModel(Base, BaseMixin): """Example model class.""" @classmethod def do_foo(cls): instance = Session.query(cls).first() save(instance) 然后,您可以绑定这些对sqlalchemy.url您
文件列表
pyramid_basemodel-master.zip
(预估有个36文件)
pyramid_basemodel-master
MANIFEST.in
64B
.coveragerc
33B
pyproject.toml
180B
pytest.ini
0B
.github
dependabot.yml
143B
workflows
pypi.yml
896B
linters.yml
1KB
暂无评论