wcp-library 1.3.9__tar.gz → 1.4.2__tar.gz
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-1.3.9 → wcp_library-1.4.2}/PKG-INFO +1 -1
- {wcp_library-1.3.9 → wcp_library-1.4.2}/pyproject.toml +1 -1
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/credentials/__init__.py +1 -1
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/sql/postgres.py +2 -1
- {wcp_library-1.3.9 → wcp_library-1.4.2}/README.md +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/__init__.py +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/credentials/_credential_manager_asynchronous.py +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/credentials/_credential_manager_synchronous.py +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/credentials/api.py +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/credentials/ftp.py +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/credentials/internet.py +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/credentials/oracle.py +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/credentials/postgres.py +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/emailing.py +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/ftp/__init__.py +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/ftp/ftp.py +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/ftp/sftp.py +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/informatica.py +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/logging.py +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/selenium_helper.py +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/sql/__init__.py +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/sql/oracle.py +0 -0
- {wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/time.py +0 -0
@@ -6,7 +6,7 @@ class MissingCredentialsError(KeyError):
|
|
6
6
|
pass
|
7
7
|
|
8
8
|
|
9
|
-
def generate_password(length: int=12, use_nums: bool=True, use_special: bool=True, special_chars_override:
|
9
|
+
def generate_password(length: int=12, use_nums: bool=True, use_special: bool=True, special_chars_override: str=None, force_num: bool=True, force_spec: bool=True) -> str:
|
10
10
|
"""
|
11
11
|
Function to generate a random password
|
12
12
|
|
@@ -402,7 +402,8 @@ class AsyncPostgresConnection(object):
|
|
402
402
|
"""
|
403
403
|
|
404
404
|
async with self._session_pool.connection() as connection:
|
405
|
-
|
405
|
+
cursor = connection.cursor()
|
406
|
+
await cursor.executemany(query, dictionary)
|
406
407
|
|
407
408
|
@async_retry
|
408
409
|
async def fetch_data(self, query: SQL | str, packed_data=None):
|
File without changes
|
File without changes
|
{wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/credentials/_credential_manager_asynchronous.py
RENAMED
File without changes
|
{wcp_library-1.3.9 → wcp_library-1.4.2}/wcp_library/credentials/_credential_manager_synchronous.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|