mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
108 lines
3.4 KiB
Python
108 lines
3.4 KiB
Python
import os
|
|
import time
|
|
|
|
from tqdm import tqdm
|
|
import pandas as pd
|
|
from dotenv import load_dotenv
|
|
from etl.find_my_epc.RetrieveFindMyEpc import RetrieveFindMyEpc
|
|
from backend.SearchEpc import SearchEpc
|
|
from utils.s3 import save_csv_to_s3
|
|
|
|
load_dotenv(dotenv_path="backend/.env")
|
|
EPC_AUTH_TOKEN = os.getenv("EPC_AUTH_TOKEN")
|
|
USER_ID = 8
|
|
PORTFOLIO_ID = 123
|
|
|
|
|
|
def app():
|
|
asset_list = [
|
|
{"address": "1 Raven Crescent", "postcode": "WV11 2EX", "uprn": 100071188496},
|
|
|
|
{"address": "13 Bayliss Avenue", "postcode": "WV11 2EX", "uprn": 100071136271},
|
|
|
|
{"address": "30 Southbourne Road", "postcode": "WV10 6ET", "uprn": 100071194376},
|
|
|
|
{"address": "96 Marsh Lane", "postcode": "WV10 6RX", "uprn": 100071176297},
|
|
]
|
|
asset_list = pd.DataFrame(asset_list)
|
|
|
|
valuations_data = [
|
|
{'uprn': 100071188496, "valuation": 175_000},
|
|
{'uprn': 100071136271, "valuation": 183_000},
|
|
{'uprn': 100071194376, "valuation": 221_000},
|
|
{'uprn': 100071176297, "valuation": 208_000},
|
|
]
|
|
|
|
# Pull the additional data
|
|
extracted_data = []
|
|
for _, home in tqdm(asset_list.iterrows(), total=len(asset_list)):
|
|
add1 = home["address"]
|
|
pc = home["postcode"]
|
|
# Retrieve the EPC data
|
|
epc_searcher = SearchEpc(
|
|
address1=add1,
|
|
postcode=pc, uprn=home["uprn"], auth_token=EPC_AUTH_TOKEN, os_api_key=""
|
|
)
|
|
epc_searcher.find_property(skip_os=True)
|
|
if epc_searcher.newest_epc is None:
|
|
continue
|
|
|
|
find_epc_searcher = RetrieveFindMyEpc(address=epc_searcher.newest_epc["address1"],
|
|
postcode=epc_searcher.newest_epc["postcode"])
|
|
find_epc_data = find_epc_searcher.retrieve_newest_find_my_epc_data()
|
|
time.sleep(0.5)
|
|
# We need uprn
|
|
|
|
extracted_data.append(
|
|
{
|
|
"uprn": home["uprn"],
|
|
**find_epc_data,
|
|
}
|
|
)
|
|
|
|
non_invasive_recommendations = [
|
|
{
|
|
"uprn": r["uprn"],
|
|
"recommendations": r["recommendations"]
|
|
} for r in extracted_data
|
|
]
|
|
|
|
filename = f"{USER_ID}/{PORTFOLIO_ID}/asset_list.csv"
|
|
save_csv_to_s3(
|
|
dataframe=pd.DataFrame(asset_list),
|
|
bucket_name="retrofit-plan-inputs-dev",
|
|
file_name=filename
|
|
)
|
|
|
|
# Store the non-invasive recommendations in s3
|
|
non_invasive_recommendations_filename = f"{USER_ID}/{PORTFOLIO_ID}/non_invasive_recommendations.csv"
|
|
save_csv_to_s3(
|
|
dataframe=pd.DataFrame(non_invasive_recommendations),
|
|
bucket_name="retrofit-plan-inputs-dev",
|
|
file_name=non_invasive_recommendations_filename
|
|
)
|
|
|
|
# Store the valuations data in s3
|
|
valuations_filename = f"{USER_ID}/{PORTFOLIO_ID}/valuations.csv"
|
|
save_csv_to_s3(
|
|
dataframe=pd.DataFrame(valuations_data),
|
|
bucket_name="retrofit-plan-inputs-dev",
|
|
file_name=valuations_filename
|
|
)
|
|
|
|
body = {
|
|
"portfolio_id": str(PORTFOLIO_ID),
|
|
"housing_type": "Private",
|
|
"goal": "Increasing EPC",
|
|
"goal_value": "B",
|
|
"trigger_file_path": filename,
|
|
"already_installed_file_path": "",
|
|
"patches_file_path": "",
|
|
"non_invasive_recommendations_file_path": non_invasive_recommendations_filename,
|
|
"valuation_file_path": valuations_filename,
|
|
"scenario_name": "Wave 3 Packages",
|
|
"multi_plan": True,
|
|
"budget": None,
|
|
"exclusions": []
|
|
}
|
|
print(body)
|