database-wrapper-pgsql 0.1.84__py3-none-any.whl → 0.1.86__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.
- database_wrapper_pgsql/db_wrapper_pgsql.py +2 -2
- database_wrapper_pgsql/db_wrapper_pgsql_async.py +2 -2
- {database_wrapper_pgsql-0.1.84.dist-info → database_wrapper_pgsql-0.1.86.dist-info}/METADATA +2 -2
- database_wrapper_pgsql-0.1.86.dist-info/RECORD +10 -0
- {database_wrapper_pgsql-0.1.84.dist-info → database_wrapper_pgsql-0.1.86.dist-info}/WHEEL +1 -1
- database_wrapper_pgsql-0.1.84.dist-info/RECORD +0 -10
- {database_wrapper_pgsql-0.1.84.dist-info → database_wrapper_pgsql-0.1.86.dist-info}/top_level.txt +0 -0
|
@@ -13,7 +13,7 @@ class DBWrapperPgSQL(DBWrapperPgSQLMixin, DBWrapper):
|
|
|
13
13
|
Sync database wrapper for postgres
|
|
14
14
|
"""
|
|
15
15
|
|
|
16
|
-
dbCursor: PgCursorType
|
|
16
|
+
dbCursor: PgCursorType | None
|
|
17
17
|
""" PostgreSQL cursor object """
|
|
18
18
|
|
|
19
19
|
#######################
|
|
@@ -40,7 +40,7 @@ class DBWrapperPgSQL(DBWrapperPgSQLMixin, DBWrapper):
|
|
|
40
40
|
### Setters ###
|
|
41
41
|
###############
|
|
42
42
|
|
|
43
|
-
def setDbCursor(self, dbCursor: PgCursorType) -> None:
|
|
43
|
+
def setDbCursor(self, dbCursor: PgCursorType | None) -> None:
|
|
44
44
|
"""
|
|
45
45
|
Updates the database cursor object.
|
|
46
46
|
|
|
@@ -15,7 +15,7 @@ class DBWrapperPgSQLAsync(DBWrapperPgSQLMixin, DBWrapperAsync):
|
|
|
15
15
|
This is meant to be used in async environments.
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
|
-
dbCursor: PgCursorTypeAsync
|
|
18
|
+
dbCursor: PgCursorTypeAsync | None
|
|
19
19
|
""" Async PostgreSQL cursor object """
|
|
20
20
|
|
|
21
21
|
#######################
|
|
@@ -42,7 +42,7 @@ class DBWrapperPgSQLAsync(DBWrapperPgSQLMixin, DBWrapperAsync):
|
|
|
42
42
|
### Setters ###
|
|
43
43
|
###############
|
|
44
44
|
|
|
45
|
-
def setDbCursor(self, dbCursor: PgCursorTypeAsync) -> None:
|
|
45
|
+
def setDbCursor(self, dbCursor: PgCursorTypeAsync | None) -> None:
|
|
46
46
|
"""
|
|
47
47
|
Updates the database cursor object.
|
|
48
48
|
|
{database_wrapper_pgsql-0.1.84.dist-info → database_wrapper_pgsql-0.1.86.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: database_wrapper_pgsql
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.86
|
|
4
4
|
Summary: database_wrapper for PostgreSQL database
|
|
5
5
|
Author-email: Gints Murans <gm@gm.lv>
|
|
6
6
|
License: GNU General Public License v3.0 (GPL-3.0)
|
|
@@ -32,7 +32,7 @@ Classifier: Topic :: Software Development
|
|
|
32
32
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
33
33
|
Requires-Python: >=3.8
|
|
34
34
|
Description-Content-Type: text/markdown
|
|
35
|
-
Requires-Dist: database_wrapper==0.1.
|
|
35
|
+
Requires-Dist: database_wrapper==0.1.86
|
|
36
36
|
Requires-Dist: psycopg[binary]>=3.2.0
|
|
37
37
|
Requires-Dist: psycopg[pool]>=3.2.0
|
|
38
38
|
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
database_wrapper_pgsql/__init__.py,sha256=9QvHYUq5EgEpqIaZArrm30v_USM5zIaf0UN-z6cHWhs,1058
|
|
2
|
+
database_wrapper_pgsql/connector.py,sha256=Qom_I8eVuq9iSHZEe06QW53oq16j0lmPLwPmcOrbKmc,24896
|
|
3
|
+
database_wrapper_pgsql/db_wrapper_pgsql.py,sha256=v4GGsheZljELurAuaQDTI6ZFoFGjThQ9MubRpRj3dVc,1906
|
|
4
|
+
database_wrapper_pgsql/db_wrapper_pgsql_async.py,sha256=sSCHLHvKnf7i_Dy8K8_XKa6hWMc26W9hJqU4nbN0v_c,2009
|
|
5
|
+
database_wrapper_pgsql/db_wrapper_pgsql_mixin.py,sha256=D0RKSGnZsyC3XbhQeGgblCP3W9530at2j9O5CaSc2GI,5377
|
|
6
|
+
database_wrapper_pgsql/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
database_wrapper_pgsql-0.1.86.dist-info/METADATA,sha256=7SUKdQoHOqOPcvA-ia7X9T576gWeMycRZvaxH52AXM8,3231
|
|
8
|
+
database_wrapper_pgsql-0.1.86.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
|
|
9
|
+
database_wrapper_pgsql-0.1.86.dist-info/top_level.txt,sha256=EQhZLk12wRdsSp-Lo3Jc4cXmNfG8y5EouNv_7OBCSGo,23
|
|
10
|
+
database_wrapper_pgsql-0.1.86.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
database_wrapper_pgsql/__init__.py,sha256=9QvHYUq5EgEpqIaZArrm30v_USM5zIaf0UN-z6cHWhs,1058
|
|
2
|
-
database_wrapper_pgsql/connector.py,sha256=Qom_I8eVuq9iSHZEe06QW53oq16j0lmPLwPmcOrbKmc,24896
|
|
3
|
-
database_wrapper_pgsql/db_wrapper_pgsql.py,sha256=Xkccd7l9fvG49aypdNPwSy3miG8ZWm-fa5HqoZbW-M0,1892
|
|
4
|
-
database_wrapper_pgsql/db_wrapper_pgsql_async.py,sha256=I2vXUd9NEcwNqZkQtNn8jBTsTO40FZjoDwWffsfaqtw,1995
|
|
5
|
-
database_wrapper_pgsql/db_wrapper_pgsql_mixin.py,sha256=D0RKSGnZsyC3XbhQeGgblCP3W9530at2j9O5CaSc2GI,5377
|
|
6
|
-
database_wrapper_pgsql/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
database_wrapper_pgsql-0.1.84.dist-info/METADATA,sha256=WYkfvBtdb-0K9mIbicPCrXSYtgsNKU3I7wlGsECffec,3231
|
|
8
|
-
database_wrapper_pgsql-0.1.84.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
|
|
9
|
-
database_wrapper_pgsql-0.1.84.dist-info/top_level.txt,sha256=EQhZLk12wRdsSp-Lo3Jc4cXmNfG8y5EouNv_7OBCSGo,23
|
|
10
|
-
database_wrapper_pgsql-0.1.84.dist-info/RECORD,,
|
{database_wrapper_pgsql-0.1.84.dist-info → database_wrapper_pgsql-0.1.86.dist-info}/top_level.txt
RENAMED
|
File without changes
|