ezKit 1.12.22__py3-none-any.whl → 1.12.23__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ezKit/database.py +3 -3
- {ezkit-1.12.22.dist-info → ezkit-1.12.23.dist-info}/METADATA +1 -1
- {ezkit-1.12.22.dist-info → ezkit-1.12.23.dist-info}/RECORD +6 -6
- {ezkit-1.12.22.dist-info → ezkit-1.12.23.dist-info}/WHEEL +0 -0
- {ezkit-1.12.22.dist-info → ezkit-1.12.23.dist-info}/licenses/LICENSE +0 -0
- {ezkit-1.12.22.dist-info → ezkit-1.12.23.dist-info}/top_level.txt +0 -0
ezKit/database.py
CHANGED
@@ -605,7 +605,7 @@ class DatabaseAsyncSession:
|
|
605
605
|
# 执行器 (CRUD都可以执行. 即可以执行原生SQL, 也可以执行ORM)
|
606
606
|
# statement: SQL 或者 insert(schema)等
|
607
607
|
# params: List[dict]
|
608
|
-
async def operater(self, statement, params, **kwargs) -> Result | None:
|
608
|
+
async def operater(self, statement, params: Any | None = None, **kwargs) -> Result | None:
|
609
609
|
|
610
610
|
async with self.AsyncSessionLocal() as session:
|
611
611
|
|
@@ -619,14 +619,14 @@ class DatabaseAsyncSession:
|
|
619
619
|
return None
|
620
620
|
|
621
621
|
# 精确返回一个标量结果 (适用于只返回一行数据的select, 比如 count 查询)
|
622
|
-
async def operate_return_scalar_one(self, statement, params, **kwargs) -> Any | None:
|
622
|
+
async def operate_return_scalar_one(self, statement, params: Any | None = None, **kwargs) -> Any | None:
|
623
623
|
result = await self.operater(statement, params, **kwargs)
|
624
624
|
if result is None:
|
625
625
|
return None
|
626
626
|
return result.scalar_one()
|
627
627
|
|
628
628
|
# 返回所有结果 (适用于所有select)
|
629
|
-
async def operate_return_mappings_all(self, statement, params, **kwargs) -> List[Any]:
|
629
|
+
async def operate_return_mappings_all(self, statement, params: Any | None = None, **kwargs) -> List[Any]:
|
630
630
|
result = await self.operater(statement, params, **kwargs)
|
631
631
|
if result is None:
|
632
632
|
return []
|
@@ -3,7 +3,7 @@ ezKit/_file.py,sha256=0qRZhwYuagTgTGrhm-tzAMvEQT4HTJA_xZKqF2bo0ho,1207
|
|
3
3
|
ezKit/bottle.py,sha256=43h4v1kzz6qrLvCt5IMN0H-gFtaT0koG9wETqteXsps,181666
|
4
4
|
ezKit/bottle_extensions.py,sha256=27rogmfK7mL2qUSjXH79IMGZbCVULtYEikql_N9O6Zs,1165
|
5
5
|
ezKit/cipher.py,sha256=7jBarRH7ukSYzkz-Anl8B8JzluhnRz4CLHidPRRj_cg,2939
|
6
|
-
ezKit/database.py,sha256=
|
6
|
+
ezKit/database.py,sha256=ZvyxBr-_3XNTuyJTM_5HUJqeyAmLI-ftDAKTyab5wsw,21732
|
7
7
|
ezKit/dockerhub.py,sha256=j-wQO-71BsOgExHZhYynuy2k_hCX3on-vg0TH7QCit4,1996
|
8
8
|
ezKit/http.py,sha256=zhNxJF-x91UqGncXWxVXnhZVpFo_wmmpGnMXVT11y9E,1832
|
9
9
|
ezKit/markdown_to_html.template,sha256=21G2sSVGJn6aJvHd0NN4zY5YiDteKe4UtW36AzBwSdk,22274
|
@@ -15,8 +15,8 @@ ezKit/token.py,sha256=Ac-i9xfq4TqpGyfCzakjrh4NYzxHiN2sCQrMk1tzVi8,1716
|
|
15
15
|
ezKit/utils.py,sha256=U457ahFkxIXuB-qWvS3995xJs-LlkFIX5_ZWVgmL5cY,43130
|
16
16
|
ezKit/xftp.py,sha256=-XQXyhMqeigT63P6sXkSS7r4GROXyqqlkzKxITLWG-g,8278
|
17
17
|
ezKit/zabbix.py,sha256=PkMnfu7mcuotwwIIsHaC9FsNg-gap6hD1xvm0AwSL1Y,33777
|
18
|
-
ezkit-1.12.
|
19
|
-
ezkit-1.12.
|
20
|
-
ezkit-1.12.
|
21
|
-
ezkit-1.12.
|
22
|
-
ezkit-1.12.
|
18
|
+
ezkit-1.12.23.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
19
|
+
ezkit-1.12.23.dist-info/METADATA,sha256=_uyFQwYed7tO-PoyfSnn5cEAQAz7lHU5thsZaegrOfo,317
|
20
|
+
ezkit-1.12.23.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
21
|
+
ezkit-1.12.23.dist-info/top_level.txt,sha256=aYLB_1WODsqNTsTFWcKP-BN0KCTKcV-HZJ4zlHkCFw8,6
|
22
|
+
ezkit-1.12.23.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|