diff --git a/homeharvest/core/scrapers/realtor/__init__.py b/homeharvest/core/scrapers/realtor/__init__.py index 08b065c..2c493a5 100644 --- a/homeharvest/core/scrapers/realtor/__init__.py +++ b/homeharvest/core/scrapers/realtor/__init__.py @@ -49,6 +49,7 @@ class RealtorScraper(Scraper): listing_id } address { + street_direction street_number street_name street_suffix @@ -215,6 +216,7 @@ class RealtorScraper(Scraper): stories } address { + street_direction street_number street_name street_suffix @@ -315,6 +317,7 @@ class RealtorScraper(Scraper): } location { address { + street_direction street_number street_name street_suffix @@ -606,6 +609,7 @@ class RealtorScraper(Scraper): return Address( street=" ".join([ self.handle_none_safely(address.get('street_number')), + self.handle_none_safely(address.get('street_direction')), self.handle_none_safely(address.get('street_name')), self.handle_none_safely(address.get('street_suffix')), ]).strip(), diff --git a/pyproject.toml b/pyproject.toml index 2cb393f..1d3f972 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "homeharvest" -version = "0.3.8" +version = "0.3.9" description = "Real estate scraping library supporting Zillow, Realtor.com & Redfin." authors = ["Zachary Hampton ", "Cullen Watson "] homepage = "https://github.com/Bunsly/HomeHarvest"