diff --git a/HomeHarvest_Demo.ipynb b/HomeHarvest_Demo.ipynb index a9e8f12..8e98451 100644 --- a/HomeHarvest_Demo.ipynb +++ b/HomeHarvest_Demo.ipynb @@ -67,8 +67,8 @@ "source": [ "# check rentals\n", "scrape_property(\n", - " location=\"chicago\",\n", - " site_name=[\"redfin\", \"realtor.com\"],\n", + " location=\"chicago, illinois\",\n", + " site_name=[\"redfin\", \"zillow\"],\n", " listing_type=\"for_rent\"\n", ")" ] @@ -87,7 +87,7 @@ "source": [ "# check sold properties\n", "scrape_property(\n", - " location=\"chicago, illinois\",\n", + " location=\"90210\",\n", " site_name=[\"redfin\"],\n", " listing_type=\"sold\"\n", ")" diff --git a/pyproject.toml b/pyproject.toml index fa1d1b9..a3c62d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "homeharvest" -version = "0.2.0" +version = "0.2.1" description = "Real estate scraping library supporting Zillow, Realtor.com & Redfin." authors = ["Zachary Hampton ", "Cullen Watson "] homepage = "https://github.com/ZacharyHampton/HomeHarvest"