diff --git a/etl/hubSpotClient/hubspotClient.py b/etl/hubSpotClient/hubspotClient.py index 591b128..6fc4777 100644 --- a/etl/hubSpotClient/hubspotClient.py +++ b/etl/hubSpotClient/hubspotClient.py @@ -17,6 +17,7 @@ class Companies(Enum): SURESERVE = "301745289413" HOMEGROUP = "94946071794" APPLE = "184769046716" + THE_GUINESS_PARTNERSHIP = "86970043613" class DealStage(Enum): SURVEYED_COMPLETE_NEEDS_SIGN_OFF = "1617223914" diff --git a/etl/hubSpotClient/scripts/hubspot_company.py b/etl/hubSpotClient/scripts/hubspot_company.py index 8d14e2d..788f2e2 100644 --- a/etl/hubSpotClient/scripts/hubspot_company.py +++ b/etl/hubSpotClient/scripts/hubspot_company.py @@ -5,14 +5,11 @@ from etl.db.hubSpotLoad import HubspotTodb hubspot = HubSpotClient() companies = [ - Companies.ABRI, - Companies.LIVEWEST, - Companies.SOUTHERN_HOUSING_GROUP, - Companies.SURESERVE, + Companies.THE_GUINESS_PARTNERSHIP, ] # All deals from a pipeline_id via filter -for comapny in companies: +for company in companies: new_company_info = hubspot.get_company_information(company.value) loader = HubspotTodb() loader.new_record_company(new_company_info) \ No newline at end of file diff --git a/etl/hubSpotClient/scripts/hubspot_gather_all_deals.py b/etl/hubSpotClient/scripts/hubspot_gather_all_deals.py index f4826a0..d3480cb 100644 --- a/etl/hubSpotClient/scripts/hubspot_gather_all_deals.py +++ b/etl/hubSpotClient/scripts/hubspot_gather_all_deals.py @@ -8,12 +8,7 @@ loader = HubspotTodb() PIPELINE_ID = Pipeline.OPERATIONS_SOCIAL_HOUSING.value valuable_companies = [ - # Companies.HOMEGROUP.value, - # Companies.ABRI.value, - # Companies.SOUTHERN_HOUSING_GROUP.value, - # Companies.SURESERVE.value, - # Companies.LIVEWEST.value, - Companies.APPLE.value, + Companies.THE_GUINESS_PARTNERSHIP.value, ] deals_to_add = []