wcp-library 1.2.6__py3-none-any.whl → 1.2.7__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.
- wcp_library/async_sql/oracle.py +3 -2
- wcp_library/async_sql/postgres.py +3 -2
- wcp_library/sql/oracle.py +3 -2
- wcp_library/sql/postgres.py +3 -2
- {wcp_library-1.2.6.dist-info → wcp_library-1.2.7.dist-info}/METADATA +1 -1
- {wcp_library-1.2.6.dist-info → wcp_library-1.2.7.dist-info}/RECORD +7 -7
- {wcp_library-1.2.6.dist-info → wcp_library-1.2.7.dist-info}/WHEEL +0 -0
wcp_library/async_sql/oracle.py
CHANGED
@@ -188,7 +188,7 @@ class AsyncOracleConnection(object):
|
|
188
188
|
return rows
|
189
189
|
|
190
190
|
@retry
|
191
|
-
async def remove_matching_data(self, dfObj: pd.DataFrame, outputTableName, match_cols: list) -> None:
|
191
|
+
async def remove_matching_data(self, dfObj: pd.DataFrame, outputTableName: str, match_cols: list) -> None:
|
192
192
|
"""
|
193
193
|
Remove matching data from the warehouse
|
194
194
|
|
@@ -198,13 +198,14 @@ class AsyncOracleConnection(object):
|
|
198
198
|
:return: None
|
199
199
|
"""
|
200
200
|
|
201
|
+
df = dfObj[match_cols]
|
201
202
|
match_cols = ', '.join(match_cols)
|
202
203
|
param_list = []
|
203
204
|
for column in match_cols:
|
204
205
|
param_list.append(f"{column} = :{column}")
|
205
206
|
params = ' AND '.join(param_list)
|
206
207
|
|
207
|
-
main_dict =
|
208
|
+
main_dict = df.to_dict('records')
|
208
209
|
query = f"""DELETE FROM {outputTableName} WHERE {params}"""
|
209
210
|
await self.execute_many(query, main_dict)
|
210
211
|
|
@@ -171,7 +171,7 @@ class AsyncPostgresConnection(object):
|
|
171
171
|
return rows
|
172
172
|
|
173
173
|
@retry
|
174
|
-
async def remove_matching_data(self, dfObj: pd.DataFrame, outputTableName, match_cols: list) -> None:
|
174
|
+
async def remove_matching_data(self, dfObj: pd.DataFrame, outputTableName: str, match_cols: list) -> None:
|
175
175
|
"""
|
176
176
|
Remove matching data from the warehouse
|
177
177
|
|
@@ -181,13 +181,14 @@ class AsyncPostgresConnection(object):
|
|
181
181
|
:return: None
|
182
182
|
"""
|
183
183
|
|
184
|
+
df = dfObj[match_cols]
|
184
185
|
match_cols = ', '.join(match_cols)
|
185
186
|
param_list = []
|
186
187
|
for column in match_cols:
|
187
188
|
param_list.append(f"{column} = %({column})s")
|
188
189
|
params = ' AND '.join(param_list)
|
189
190
|
|
190
|
-
main_dict =
|
191
|
+
main_dict = df.to_dict('records')
|
191
192
|
query = """DELETE FROM {} WHERE {}""".format(outputTableName, params)
|
192
193
|
await self.execute_many(query, main_dict)
|
193
194
|
|
wcp_library/sql/oracle.py
CHANGED
@@ -192,7 +192,7 @@ class OracleConnection(object):
|
|
192
192
|
return rows
|
193
193
|
|
194
194
|
@retry
|
195
|
-
def remove_matching_data(self, dfObj: pd.DataFrame, outputTableName, match_cols: list) -> None:
|
195
|
+
def remove_matching_data(self, dfObj: pd.DataFrame, outputTableName: str, match_cols: list) -> None:
|
196
196
|
"""
|
197
197
|
Remove matching data from the warehouse
|
198
198
|
|
@@ -202,13 +202,14 @@ class OracleConnection(object):
|
|
202
202
|
:return: None
|
203
203
|
"""
|
204
204
|
|
205
|
+
df = dfObj[match_cols]
|
205
206
|
match_cols = ', '.join(match_cols)
|
206
207
|
param_list = []
|
207
208
|
for column in match_cols:
|
208
209
|
param_list.append(f"{column} = :{column}")
|
209
210
|
params = ' AND '.join(param_list)
|
210
211
|
|
211
|
-
main_dict =
|
212
|
+
main_dict = df.to_dict('records')
|
212
213
|
query = f"""DELETE FROM {outputTableName} WHERE {params}"""
|
213
214
|
self.execute_many(query, main_dict)
|
214
215
|
|
wcp_library/sql/postgres.py
CHANGED
@@ -172,7 +172,7 @@ class PostgresConnection(object):
|
|
172
172
|
return rows
|
173
173
|
|
174
174
|
@retry
|
175
|
-
def remove_matching_data(self, dfObj: pd.DataFrame, outputTableName, match_cols: list) -> None:
|
175
|
+
def remove_matching_data(self, dfObj: pd.DataFrame, outputTableName: str, match_cols: list) -> None:
|
176
176
|
"""
|
177
177
|
Remove matching data from the warehouse
|
178
178
|
|
@@ -182,13 +182,14 @@ class PostgresConnection(object):
|
|
182
182
|
:return: None
|
183
183
|
"""
|
184
184
|
|
185
|
+
df = dfObj[match_cols]
|
185
186
|
match_cols = ', '.join(match_cols)
|
186
187
|
param_list = []
|
187
188
|
for column in match_cols:
|
188
189
|
param_list.append(f"{column} = %({column})s")
|
189
190
|
params = ' AND '.join(param_list)
|
190
191
|
|
191
|
-
main_dict =
|
192
|
+
main_dict = df.to_dict('records')
|
192
193
|
query = """DELETE FROM {} WHERE {}""".format(outputTableName, params)
|
193
194
|
self.execute_many(query, main_dict)
|
194
195
|
|
@@ -4,8 +4,8 @@ wcp_library/async_credentials/api.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
4
4
|
wcp_library/async_credentials/oracle.py,sha256=MvC7wsHnSyAyPGnRVlH0dvvW2xk5ap_IAByoHX4rUWY,5436
|
5
5
|
wcp_library/async_credentials/postgres.py,sha256=3wjqtLH0Nc-U80iscYnz5DV-9M2X4IjPW51C5MI2_tI,5297
|
6
6
|
wcp_library/async_sql/__init__.py,sha256=m4eWmUGYUEDomhhOp1ScB2uSIXFsNUNO589o5RwWdyM,1035
|
7
|
-
wcp_library/async_sql/oracle.py,sha256=
|
8
|
-
wcp_library/async_sql/postgres.py,sha256=
|
7
|
+
wcp_library/async_sql/oracle.py,sha256=TyKiArqbAR3b2cd2933UuH_EhnOx6he90yVVsQnrtjU,7923
|
8
|
+
wcp_library/async_sql/postgres.py,sha256=HTCyJUvGHedmU_KKh756MSMZxzsxe8GLCrJpWITDaQU,7451
|
9
9
|
wcp_library/credentials/__init__.py,sha256=HRmg7mqcATeclIz3lZQjSR4nmK6aY6MK9-QXEYZoFrw,1857
|
10
10
|
wcp_library/credentials/ftp.py,sha256=FRxKVWifz7olQIrSjDgkTqk7rmc7Zdwmkfq7b62DQY8,4965
|
11
11
|
wcp_library/credentials/oracle.py,sha256=IJVGd10LH5LUNKUSFAbApi0sjR1AbloMJRHTuR9zFrQ,5095
|
@@ -18,8 +18,8 @@ wcp_library/informatica.py,sha256=IXZtk_9X1XLbOEwFrsyOwTgajQKvtXgANBHmuTOP3Kk,40
|
|
18
18
|
wcp_library/logging.py,sha256=e6gG7HFgUrMajUZs4Gs0atFfOJJmdmxN0GerfynNWlY,2061
|
19
19
|
wcp_library/selenium_helper.py,sha256=rlphTXsUgnbaXZknY5nfQqxFhnc7UmrpzhV3hQ-cv7k,2509
|
20
20
|
wcp_library/sql/__init__.py,sha256=CLlBEBrWVAwE79bUxuQiwikSrYH8m9QRYSJ2l0-ofsY,1003
|
21
|
-
wcp_library/sql/oracle.py,sha256=
|
22
|
-
wcp_library/sql/postgres.py,sha256=
|
23
|
-
wcp_library-1.2.
|
24
|
-
wcp_library-1.2.
|
25
|
-
wcp_library-1.2.
|
21
|
+
wcp_library/sql/oracle.py,sha256=hAnjn6lBYVjH10LI4x7KMd7dVmPONOHa9PQx6tvhc1U,7744
|
22
|
+
wcp_library/sql/postgres.py,sha256=jHI7auaB2BYzaL1ztauFwIJP79M7ox6UyYJgqo73GDw,7048
|
23
|
+
wcp_library-1.2.7.dist-info/METADATA,sha256=mo5dHBapD5bG3q5b16fU5JYLOGOwKnJvTuXZBt6vqmY,1513
|
24
|
+
wcp_library-1.2.7.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
25
|
+
wcp_library-1.2.7.dist-info/RECORD,,
|
File without changes
|