Skip to content

Commit 01e6966

Browse files
committed
refactored code with better script names
1 parent 951e496 commit 01e6966

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
from api.API_ingest import shelterluv_api_handler, salesforce_api_handler
1+
from api.API_ingest import shelterluv_people, salesforce_contacts
22
import structlog
33
logger = structlog.get_logger()
44

55
def start(session):
66
logger.debug("Start Fetching raw data from different API sources")
77
#Run each source to store the output in dropbox and in the container as a CSV
8-
shelterluv_api_handler.store_shelterluv_people_all(session)
9-
salesforce_api_handler.store_contacts_all(session)
8+
shelterluv_people.store_shelterluv_people_all(session)
9+
salesforce_contacts.store_contacts_all(session)
1010
logger.debug("Finish Fetching raw data from different API sources")

0 commit comments

Comments
 (0)