mirror of
https://github.com/Bunsly/HomeHarvest.git
synced 2026-03-04 19:44:29 -08:00
- rename to property
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
from dataclasses import dataclass
|
||||
import requests
|
||||
from .types import Home, ListingType
|
||||
from .types import Property, ListingType
|
||||
|
||||
|
||||
@dataclass
|
||||
@@ -21,9 +21,9 @@ class Scraper:
|
||||
"https": scraper_input.proxy_url,
|
||||
}
|
||||
|
||||
def search(self) -> list[Home]: ...
|
||||
def search(self) -> list[Property]: ...
|
||||
|
||||
@staticmethod
|
||||
def parse_home(home) -> Home: ...
|
||||
def parse_home(home) -> Property: ...
|
||||
|
||||
def handle_location(self): ...
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import json
|
||||
from ..types import Home, Address
|
||||
from ..types import Property, Address
|
||||
from .. import Scraper
|
||||
from typing import Any
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import json
|
||||
from ..types import Home, Address
|
||||
from ..types import Property, Address
|
||||
from .. import Scraper
|
||||
from typing import Any
|
||||
|
||||
@@ -20,7 +20,7 @@ class RedfinScraper(Scraper):
|
||||
return response_json['payload']['sections'][0]['rows'][0].split('_')[1]
|
||||
|
||||
@staticmethod
|
||||
def parse_home(home: dict) -> Home:
|
||||
def parse_home(home: dict) -> Property:
|
||||
address = Address(
|
||||
address_one=home['streetLine']['value'],
|
||||
city=home['city'],
|
||||
@@ -34,7 +34,7 @@ class RedfinScraper(Scraper):
|
||||
if key in home and 'value' in home[key]:
|
||||
return home[key]['value']
|
||||
|
||||
return Home(
|
||||
return Property(
|
||||
address=address,
|
||||
url=url,
|
||||
beds=home['beds'] if 'beds' in home else None,
|
||||
|
||||
@@ -19,7 +19,7 @@ class Address:
|
||||
|
||||
|
||||
@dataclass
|
||||
class Home:
|
||||
class Property:
|
||||
address: Address
|
||||
url: str
|
||||
|
||||
|
||||
Reference in New Issue
Block a user