2023-09-15 15:17:37 -07:00
|
|
|
from dataclasses import dataclass
|
|
|
|
import requests
|
2023-09-17 16:30:37 -07:00
|
|
|
from .models import Property, ListingType, SiteName
|
2023-09-15 15:17:37 -07:00
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
class ScraperInput:
|
|
|
|
location: str
|
|
|
|
listing_type: ListingType
|
2023-09-17 16:30:37 -07:00
|
|
|
site_name: SiteName
|
2023-09-19 13:43:24 -07:00
|
|
|
proxy: str | None = None
|
2023-09-15 15:17:37 -07:00
|
|
|
|
|
|
|
|
|
|
|
class Scraper:
|
|
|
|
def __init__(self, scraper_input: ScraperInput):
|
|
|
|
self.location = scraper_input.location
|
2023-09-18 08:16:59 -07:00
|
|
|
self.listing_type = scraper_input.listing_type
|
|
|
|
|
2023-09-19 13:48:46 -07:00
|
|
|
self.session = requests.Session(proxies=scraper_input.proxy)
|
2023-09-17 16:30:37 -07:00
|
|
|
self.listing_type = scraper_input.listing_type
|
|
|
|
self.site_name = scraper_input.site_name
|
2023-09-15 15:17:37 -07:00
|
|
|
|
2023-09-19 13:43:24 -07:00
|
|
|
self.proxy = (lambda p: {"http": p, "https": p} if p else None)(
|
|
|
|
scraper_input.proxy
|
|
|
|
)
|
2023-09-15 15:17:37 -07:00
|
|
|
|
2023-09-17 13:06:31 -07:00
|
|
|
def search(self) -> list[Property]:
|
|
|
|
...
|
2023-09-15 15:42:47 -07:00
|
|
|
|
|
|
|
@staticmethod
|
2023-09-17 13:06:31 -07:00
|
|
|
def _parse_home(home) -> Property:
|
|
|
|
...
|
2023-09-15 20:58:54 -07:00
|
|
|
|
2023-09-17 13:06:31 -07:00
|
|
|
def handle_location(self):
|
|
|
|
...
|