- realtor init

This commit is contained in:
Zachary Hampton
2023-09-15 20:58:54 -07:00
parent af1f2fa531
commit 0946abd35a
5 changed files with 58 additions and 1 deletions

10
tests/test_realtor.py Normal file
View File

@@ -0,0 +1,10 @@
from homeharvest import scrape_property
def test_realtor():
result = scrape_property(
location="85281",
site_name="realtor.com"
)
assert result is not None

View File

@@ -3,6 +3,7 @@ from homeharvest import scrape_property
def test_redfin():
result = scrape_property(
site_name="redfin",
location="85281"
)