文件名称:py-decogres:Python PostgreSQL连接池装饰器
文件大小:6KB
文件格式:ZIP
更新时间:2024-05-17 07:44:47
Python
杂物 (适用于Post gres SQL的python Deco rator) 描述 这是一个小模块,用于维护连接到单个数据库或连接到多个数据库的应用程序的连接池。 动机与推理 装饰器因隐藏诸如全球状态之类的愚蠢事物而备受人群欢迎。 这个想法是为了能够轻松地调出您已经初始化的数据库池,并通过简单的界面继续使用与代码插入相同的池。 装饰器使您很容易看到函数接触了数据库,并且还暗示了更大的范围。 用例 像这样的简单的东西。 @postgres(**{'name': 'ppp', 'connection_url': "postgresql://postgres:postgres@localhost/"}) def get_42_from_the_database(): with ppp.cursor() as c: c.execute("SELECT 42 AS AMA
【文件预览】:
py-decogres-master
----setup.py(505B)
----.gitignore(71B)
----requirements.txt(17B)
----LICENSE(1KB)
----decogres()
--------__init__.py(77B)
--------postgresql.py(2KB)
--------decorator.py(1008B)
----README.md(2KB)
----tests()
--------testdb2.py(617B)
--------testdb.py(1001B)