DSatishchandra commited on
Commit
8235662
·
verified ·
1 Parent(s): c8fe359

Update salesforce.py

Browse files
Files changed (1) hide show
  1. salesforce.py +4 -0
salesforce.py CHANGED
@@ -6,6 +6,10 @@ def get_salesforce_connection():
6
  sf_username = os.getenv('SF_USERNAME')
7
  sf_password = os.getenv('SF_PASSWORD')
8
  sf_token = os.getenv('SF_SECURITY_TOKEN')
 
 
 
 
9
 
10
  # Ensure the credentials are available
11
  if not sf_username or not sf_password or not sf_token:
 
6
  sf_username = os.getenv('SF_USERNAME')
7
  sf_password = os.getenv('SF_PASSWORD')
8
  sf_token = os.getenv('SF_SECURITY_TOKEN')
9
+
10
+ # Salesforce connection details
11
+ sf = Salesforce(username='[email protected]', password='Sati@1020', security_token='sSSjyhInIsUohKpG8sHzty2q')
12
+
13
 
14
  # Ensure the credentials are available
15
  if not sf_username or not sf_password or not sf_token: