database-wrapper-pgsql 0.2.5__py3-none-any.whl → 0.2.6__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_mixin.py +1 -1
- {database_wrapper_pgsql-0.2.5.dist-info → database_wrapper_pgsql-0.2.6.dist-info}/METADATA +2 -2
- {database_wrapper_pgsql-0.2.5.dist-info → database_wrapper_pgsql-0.2.6.dist-info}/RECORD +5 -5
- {database_wrapper_pgsql-0.2.5.dist-info → database_wrapper_pgsql-0.2.6.dist-info}/WHEEL +0 -0
- {database_wrapper_pgsql-0.2.5.dist-info → database_wrapper_pgsql-0.2.6.dist-info}/top_level.txt +0 -0
|
@@ -99,7 +99,7 @@ class DBWrapperPgSQLMixin:
|
|
|
99
99
|
raw = [self.format_filter(key, filter[key]) for key in filter]
|
|
100
100
|
|
|
101
101
|
_query_items = sql.SQL(" AND ").join([sql.SQL(tup[0]) for tup in raw])
|
|
102
|
-
_query = sql.SQL("WHERE {
|
|
102
|
+
_query = sql.SQL("WHERE {query_items}").format(query_items=_query_items)
|
|
103
103
|
_params = tuple([val for tup in raw for val in tup[1:] if val is not NoParam])
|
|
104
104
|
|
|
105
105
|
return (_query, _params)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: database_wrapper_pgsql
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.6
|
|
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.2.
|
|
35
|
+
Requires-Dist: database_wrapper==0.2.6
|
|
36
36
|
Requires-Dist: psycopg[binary]>=3.2.0
|
|
37
37
|
Requires-Dist: psycopg[pool]>=3.2.0
|
|
38
38
|
|
|
@@ -2,9 +2,9 @@ database_wrapper_pgsql/__init__.py,sha256=9QvHYUq5EgEpqIaZArrm30v_USM5zIaf0UN-z6
|
|
|
2
2
|
database_wrapper_pgsql/connector.py,sha256=Hicf9DHxOjv6H77ySdTi26YmKjlSTzOIWQrjETq3LRg,25027
|
|
3
3
|
database_wrapper_pgsql/db_wrapper_pgsql.py,sha256=Tm18dzSOINz4Z8xHWynLCPf-HmD_SFP0PYVE8ZPd_A4,1921
|
|
4
4
|
database_wrapper_pgsql/db_wrapper_pgsql_async.py,sha256=d4AZp_dHdmob7oJlEst2DnhMqpeXeG6WOzI8k5OldKg,2024
|
|
5
|
-
database_wrapper_pgsql/db_wrapper_pgsql_mixin.py,sha256=
|
|
5
|
+
database_wrapper_pgsql/db_wrapper_pgsql_mixin.py,sha256=b4m7YSk5OjukuCMky_VwFT8TYCqjU2goNnSC2HOM0HA,5452
|
|
6
6
|
database_wrapper_pgsql/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
database_wrapper_pgsql-0.2.
|
|
8
|
-
database_wrapper_pgsql-0.2.
|
|
9
|
-
database_wrapper_pgsql-0.2.
|
|
10
|
-
database_wrapper_pgsql-0.2.
|
|
7
|
+
database_wrapper_pgsql-0.2.6.dist-info/METADATA,sha256=tYeEJUsZW5k5skRlWre-YGtNqyEGEJLZlqBW3NbdQmc,3229
|
|
8
|
+
database_wrapper_pgsql-0.2.6.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
9
|
+
database_wrapper_pgsql-0.2.6.dist-info/top_level.txt,sha256=EQhZLk12wRdsSp-Lo3Jc4cXmNfG8y5EouNv_7OBCSGo,23
|
|
10
|
+
database_wrapper_pgsql-0.2.6.dist-info/RECORD,,
|
|
File without changes
|
{database_wrapper_pgsql-0.2.5.dist-info → database_wrapper_pgsql-0.2.6.dist-info}/top_level.txt
RENAMED
|
File without changes
|