aboutsummaryrefslogtreecommitdiffstats
path: root/python/collateral_calc.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/collateral_calc.py')
-rw-r--r--python/collateral_calc.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/collateral_calc.py b/python/collateral_calc.py
index fd530f19..603e9668 100644
--- a/python/collateral_calc.py
+++ b/python/collateral_calc.py
@@ -31,6 +31,11 @@ def get_baml_sftp_client():
transport.connect(username='lmcginvs', pkey=pkey)
return SFTPClient.from_transport(transport)
+def get_wells_sftp_client():
+ transport = Transport(('axst.wellsfargo.com', 10022))
+ transport.connect(username='LMCHsWC6EP', password='0lvK+7xL')
+ return SFTPClient.from_transport(transport)
+
def download_baml_files(d=None):
DATA_DIR = DAILY_DIR / "BAML_reports"
sftp = get_baml_sftp_client()