mirror of
https://github.com/Bunsly/HomeHarvest.git
synced 2026-03-04 19:44:29 -08:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ac0cad62a7 |
@@ -535,7 +535,7 @@ class RealtorScraper(Scraper):
|
||||
return
|
||||
|
||||
property_id = result["property_id"]
|
||||
prop_details = self.get_prop_details(property_id)
|
||||
prop_details = self.get_prop_details(property_id) if self.extra_property_data else {}
|
||||
|
||||
realty_property = Property(
|
||||
mls=mls,
|
||||
@@ -647,7 +647,7 @@ class RealtorScraper(Scraper):
|
||||
total = result["total"]
|
||||
homes = result["properties"]
|
||||
|
||||
with ThreadPoolExecutor(max_workers=10) as executor:
|
||||
with ThreadPoolExecutor() as executor:
|
||||
futures = [
|
||||
executor.submit(
|
||||
self.general_search,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "homeharvest"
|
||||
version = "0.3.31"
|
||||
version = "0.3.32"
|
||||
description = "Real estate scraping library"
|
||||
authors = ["Zachary Hampton <zachary@bunsly.com>", "Cullen Watson <cullen@bunsly.com>"]
|
||||
homepage = "https://github.com/Bunsly/HomeHarvest"
|
||||
|
||||
Reference in New Issue
Block a user