wcp-library 1.6.2__tar.gz → 1.6.3__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.6.2 → wcp_library-1.6.3}/PKG-INFO +1 -1
- {wcp_library-1.6.2 → wcp_library-1.6.3}/pyproject.toml +1 -1
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/ftp/ftp.py +1 -5
- {wcp_library-1.6.2 → wcp_library-1.6.3}/README.md +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/__init__.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/credentials/__init__.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/credentials/_credential_manager_asynchronous.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/credentials/_credential_manager_synchronous.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/credentials/api.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/credentials/ftp.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/credentials/internet.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/credentials/oracle.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/credentials/postgres.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/emailing.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/ftp/__init__.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/ftp/sftp.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/informatica.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/logging.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/selenium/__init__.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/selenium/_selenium_driver.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/selenium/selenium_helper.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/sql/__init__.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/sql/oracle.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/sql/postgres.py +0 -0
- {wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/time.py +0 -0
@@ -1,4 +1,3 @@
|
|
1
|
-
import ftplib
|
2
1
|
import logging
|
3
2
|
import re
|
4
3
|
from pathlib import Path
|
@@ -16,10 +15,7 @@ class FTP:
|
|
16
15
|
self._username: Optional[str] = None if not password_vault_dict else password_vault_dict['UserName']
|
17
16
|
self._password: Optional[str] = None if not password_vault_dict else password_vault_dict['Password']
|
18
17
|
|
19
|
-
self._ftp_factory: ftputil.session.session_factory = ftputil.session.session_factory(
|
20
|
-
port=self.port,
|
21
|
-
encrypt_data_channel=True,
|
22
|
-
encoding="UTF-8")
|
18
|
+
self._ftp_factory: ftputil.session.session_factory = ftputil.session.session_factory(port=self.port)
|
23
19
|
self.ftp_connection: Optional[ftputil.FTPHost] = None if not (self._username and self._password) \
|
24
20
|
else ftputil.FTPHost(self.host, self._username, self._password, session_factory=self._ftp_factory)
|
25
21
|
|
File without changes
|
File without changes
|
File without changes
|
{wcp_library-1.6.2 → wcp_library-1.6.3}/wcp_library/credentials/_credential_manager_asynchronous.py
RENAMED
File without changes
|
{wcp_library-1.6.2 → wcp_library-1.6.3}/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
|
File without changes
|
File without changes
|