mirror of
https://github.com/Bunsly/HomeHarvest.git
synced 2026-03-04 19:44:29 -08:00
enh:tax history
This commit is contained in:
@@ -33,6 +33,8 @@ ordered_properties = [
|
||||
"last_sold_date",
|
||||
"assessed_value",
|
||||
"estimated_value",
|
||||
"tax",
|
||||
"tax_history",
|
||||
"new_construction",
|
||||
"lot_sqft",
|
||||
"price_per_sqft",
|
||||
@@ -115,8 +117,11 @@ def process_result(result: Property) -> pd.DataFrame:
|
||||
if description:
|
||||
prop_data["primary_photo"] = description.primary_photo
|
||||
prop_data["alt_photos"] = ", ".join(description.alt_photos) if description.alt_photos else None
|
||||
prop_data["style"] = description.style if isinstance(description.style,
|
||||
str) else description.style.value if description.style else None
|
||||
prop_data["style"] = (
|
||||
description.style
|
||||
if isinstance(description.style, str)
|
||||
else description.style.value if description.style else None
|
||||
)
|
||||
prop_data["beds"] = description.beds
|
||||
prop_data["full_baths"] = description.baths_full
|
||||
prop_data["half_baths"] = description.baths_half
|
||||
|
||||
Reference in New Issue
Block a user