wrongmove/crawler/rec/query.py

117 lines
3.7 KiB
Python
Raw Normal View History

import asyncio
from dataclasses import dataclass
from datetime import datetime
2024-03-25 20:58:35 +00:00
import enum
from typing import Any
import aiohttp
from models.listing import FurnishType, ListingType, QueryParameters
from rec import districts
from tenacity import retry, stop_after_attempt, wait_random
headers = {
2023-11-18 12:30:04 +02:00
"Host": "api.rightmove.co.uk",
# 'Accept-Encoding': 'gzip, deflate, br',
2023-11-18 12:30:04 +02:00
"User-Agent": "okhttp/4.10.0",
"Connection": "close",
}
class PropertyType(enum.StrEnum):
BUNGALOW = "bungalow"
DETACHED = "detached"
FLAT = "flat"
LAND = "land"
PARK_HOME = "park-home"
SEMI_DETACHED = "semi-detached"
TERRACED = "terraced"
2024-03-25 20:58:35 +00:00
2023-11-18 12:30:04 +02:00
@retry(wait=wait_random(min=1, max=2), stop=stop_after_attempt(3))
async def detail_query(detail_id: int) -> dict[str, Any]:
params = {
2024-03-25 20:48:48 +00:00
"apiApplication": "ANDROID",
"appVersion": "3.70.0",
}
2024-03-25 20:48:48 +00:00
url = f"https://api.rightmove.co.uk/api/property/{detail_id}"
async with aiohttp.ClientSession(trust_env=True) as session:
2025-05-31 23:48:45 +00:00
async with session.get(url, params=params, headers=headers) as response:
if response.status != 200:
raise Exception(
f"""id: {detail_id}. Status Code: {response.status}."""
2025-05-31 23:48:45 +00:00
f"""Failed due to: {await response.text()}"""
)
return await response.json()
@retry(wait=wait_random(min=1, max=60), stop=stop_after_attempt(3))
2025-05-17 21:55:42 +00:00
async def listing_query(
*,
2024-03-25 20:48:48 +00:00
page: int,
channel: ListingType,
2024-03-25 20:48:48 +00:00
min_bedrooms: int,
max_bedrooms: int,
radius: float,
min_price: int,
max_price: int,
district: str, # = "STATION^5168", # kings cross station
2024-03-25 20:48:48 +00:00
mustNewHome: bool = False,
2025-05-18 12:27:26 +00:00
max_days_since_added: int = 30,
property_type: list[PropertyType] = [],
2025-05-18 12:27:26 +00:00
page_size: int = 25,
furnish_types: list[FurnishType] = [],
2025-05-18 12:27:26 +00:00
) -> dict[str, Any]:
params: dict[str, str] = {
"locationIdentifier": districts.get_districts()[district],
"channel": str(channel).upper(),
2023-11-18 12:30:04 +02:00
"page": str(page),
2024-04-01 20:28:15 +02:00
"numberOfPropertiesPerPage": str(page_size),
2023-11-18 12:38:54 +02:00
"radius": str(radius),
2023-11-18 12:30:04 +02:00
"sortBy": "distance",
"includeUnavailableProperties": "false",
2023-11-18 12:38:54 +02:00
"minPrice": str(min_price),
"maxPrice": str(max_price),
2023-11-18 12:30:04 +02:00
"minBedrooms": str(min_bedrooms),
"maxBedrooms": str(max_bedrooms),
"apiApplication": "ANDROID",
"appVersion": "4.28.0",
}
if channel is ListingType.BUY:
2025-05-18 12:27:26 +00:00
params["dontShow"] = "sharedOwnership,retirement"
if len(property_type) > 0:
params["propertyTypes"] = ",".join(property_type)
if max_days_since_added is not None and max_days_since_added not in [
2025-05-31 23:48:45 +00:00
1,
3,
7,
14,
]:
2025-06-08 20:58:28 +00:00
raise Exception(
f"Invalid max days - {max_days_since_added} Can only be got",
[1, 3, 7, 14],
)
2025-05-18 12:27:26 +00:00
params["maxDaysSinceAdded"] = str(max_days_since_added)
2024-03-25 20:48:48 +00:00
if mustNewHome:
params["mustHave"] = "newHome"
if channel is ListingType.RENT:
if furnish_types:
params["furnishTypes"] = ",".join(furnish_types)
headers = {
"Host": "api.rightmove.co.uk",
"Accept-Encoding": "gzip, deflate, br",
"User-Agent": "okhttp/4.12.0",
2025-05-31 23:48:45 +00:00
"Connection": "keep-alive",
}
async with aiohttp.ClientSession(trust_env=True) as session:
async with session.get(
"https://api.rightmove.co.uk/api/property-listing",
params=params,
headers=headers,
) as response:
if response.status != 200:
raise Exception(f"Failed due to: {await response.text()}")
return await response.json()