Spaces:
Sleeping
Sleeping
File size: 35,686 Bytes
15b0ba0 7e649bb 15b0ba0 7e649bb 15b0ba0 7e649bb 15b0ba0 7e649bb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 | # -*- coding: utf-8 -*-
"""Persistencia incremental en Neon/Postgres para el scraper de Idealista.
Modelo analítico v2:
- Estado actual por anuncio en idealista_listings.
- Snapshot por corrida en idealista_listing_snapshots.
- Control de corridas en idealista_runs.
- Detección de desplazamiento como desaparición rápida después de ser observado.
"""
from __future__ import annotations
import hashlib
import json
import os
from typing import Any
import pandas as pd
import psycopg
from psycopg.rows import dict_row
from psycopg.types.json import Jsonb
DATABASE_URL_ENV_NAMES = ("DATABASE_URL_TASAS", "DATABASE_URL", "NEON_DATABASE_URL")
DEFAULT_PROBABLY_RENTED_THRESHOLD = int(os.getenv("PROBABLY_RENTED_MISSING_RUNS", "3"))
DEFAULT_NOT_SEEN_THRESHOLD = int(os.getenv("NOT_SEEN_RECENTLY_MISSING_RUNS", "2"))
# Categorías recomendadas para una frecuencia de monitoreo cada tercer día.
# Se clasifican por corridas visibles, no por días exactos, porque la
# desaparición sólo se observa entre cortes de scraping.
RENTAL_VELOCITY_BASIS = "visible_runs_3_day_cadence"
RENTAL_VELOCITY_LABELS = {
"very_fast": "Muy rápido",
"fast": "Rápido",
"normal": "Normal",
"slow": "Lento",
"very_slow": "Muy lento",
"unknown": "Sin clasificar",
}
WATCH_FIELDS = [
"url", "title", "address_text", "location_full", "price_eur", "price_text", "price_period",
"tipologia", "tipologia_text", "area_m2", "area_text", "floor_info", "listed_when",
"estimated_published_at", "tag", "agency_name", "agency_url", "image_main_url",
"image_main_webp", "image_count", "online_booking", "has_map_button",
]
DB_COLUMNS = [
"listing_id", "district_slug", "source_input", "page_hint", "position_in_page", "global_position",
"url", "title", "address_text", "location_full", "price_eur", "price_text", "price_period",
"tipologia", "tipologia_text", "area_m2", "area_text", "floor_info", "listed_when",
"estimated_published_at", "tag", "agency_name", "agency_url", "image_main_url", "image_main_webp",
"image_count", "online_booking", "has_map_button",
]
def get_database_url() -> str | None:
for name in DATABASE_URL_ENV_NAMES:
value = os.getenv(name)
if value:
return value
return None
def require_database_url() -> str:
value = get_database_url()
if not value:
names = ", ".join(DATABASE_URL_ENV_NAMES)
raise RuntimeError(f"No se encontró cadena de conexión Neon. Configura una de estas variables: {names}")
return value
def connect() -> psycopg.Connection:
return psycopg.connect(require_database_url(), row_factory=dict_row)
def ensure_schema(conn: psycopg.Connection) -> None:
with conn.cursor() as cur:
cur.execute("CREATE EXTENSION IF NOT EXISTS pgcrypto;")
cur.execute(
"""
CREATE TABLE IF NOT EXISTS idealista_runs (
run_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
started_at TIMESTAMPTZ NOT NULL DEFAULT now(),
finished_at TIMESTAMPTZ,
source_filename TEXT,
entries_count INTEGER DEFAULT 0,
scraped_count INTEGER DEFAULT 0,
inserted_count INTEGER DEFAULT 0,
updated_count INTEGER DEFAULT 0,
unchanged_count INTEGER DEFAULT 0,
reactivated_count INTEGER DEFAULT 0,
missing_updated_count INTEGER DEFAULT 0,
probably_rented_count INTEGER DEFAULT 0,
snapshot_count INTEGER DEFAULT 0,
status TEXT NOT NULL DEFAULT 'running',
error_message TEXT,
districts_queried JSONB DEFAULT '[]'::jsonb,
metadata JSONB DEFAULT '{}'::jsonb
);
"""
)
cur.execute(
"""
CREATE TABLE IF NOT EXISTS idealista_listings (
listing_key TEXT PRIMARY KEY,
listing_id TEXT,
district_slug TEXT,
source_input TEXT,
page_hint INTEGER,
position_in_page INTEGER,
global_position INTEGER,
url TEXT,
title TEXT,
address_text TEXT,
location_full TEXT,
price_eur NUMERIC,
price_text TEXT,
price_period TEXT,
tipologia INTEGER,
tipologia_text TEXT,
area_m2 NUMERIC,
area_text TEXT,
floor_info TEXT,
listed_when TEXT,
estimated_published_at DATE,
tag TEXT,
agency_name TEXT,
agency_url TEXT,
image_main_url TEXT,
image_main_webp TEXT,
image_count INTEGER,
online_booking BOOLEAN,
has_map_button BOOLEAN,
first_seen_at TIMESTAMPTZ NOT NULL DEFAULT now(),
last_seen_at TIMESTAMPTZ NOT NULL DEFAULT now(),
last_run_id UUID REFERENCES idealista_runs(run_id) ON DELETE SET NULL,
is_active BOOLEAN NOT NULL DEFAULT TRUE,
status TEXT NOT NULL DEFAULT 'active',
missing_runs INTEGER NOT NULL DEFAULT 0,
visible_runs INTEGER NOT NULL DEFAULT 1,
days_to_displacement INTEGER,
displacement_detection_lag_days INTEGER,
rental_velocity_category TEXT NOT NULL DEFAULT 'unknown',
rental_velocity_basis TEXT NOT NULL DEFAULT 'visible_runs_3_day_cadence',
rental_velocity_classified_at TIMESTAMPTZ,
deactivated_at TIMESTAMPTZ,
reactivated_at TIMESTAMPTZ,
content_hash TEXT,
payload JSONB DEFAULT '{}'::jsonb,
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT now()
);
"""
)
# Migraciones seguras si existe una versión anterior.
alterations = [
"ALTER TABLE idealista_runs ADD COLUMN IF NOT EXISTS source_filename TEXT",
"ALTER TABLE idealista_runs ADD COLUMN IF NOT EXISTS entries_count INTEGER DEFAULT 0",
"ALTER TABLE idealista_runs ADD COLUMN IF NOT EXISTS scraped_count INTEGER DEFAULT 0",
"ALTER TABLE idealista_runs ADD COLUMN IF NOT EXISTS inserted_count INTEGER DEFAULT 0",
"ALTER TABLE idealista_runs ADD COLUMN IF NOT EXISTS updated_count INTEGER DEFAULT 0",
"ALTER TABLE idealista_runs ADD COLUMN IF NOT EXISTS unchanged_count INTEGER DEFAULT 0",
"ALTER TABLE idealista_runs ADD COLUMN IF NOT EXISTS snapshot_count INTEGER DEFAULT 0",
"ALTER TABLE idealista_runs ADD COLUMN IF NOT EXISTS metadata JSONB DEFAULT '{}'::jsonb",
"ALTER TABLE idealista_runs ADD COLUMN IF NOT EXISTS reactivated_count INTEGER DEFAULT 0",
"ALTER TABLE idealista_runs ADD COLUMN IF NOT EXISTS missing_updated_count INTEGER DEFAULT 0",
"ALTER TABLE idealista_runs ADD COLUMN IF NOT EXISTS probably_rented_count INTEGER DEFAULT 0",
"ALTER TABLE idealista_runs ADD COLUMN IF NOT EXISTS districts_queried JSONB DEFAULT '[]'::jsonb",
"ALTER TABLE idealista_listings ADD COLUMN IF NOT EXISTS source_input TEXT",
"ALTER TABLE idealista_listings ADD COLUMN IF NOT EXISTS position_in_page INTEGER",
"ALTER TABLE idealista_listings ADD COLUMN IF NOT EXISTS global_position INTEGER",
"ALTER TABLE idealista_listings ADD COLUMN IF NOT EXISTS estimated_published_at DATE",
"ALTER TABLE idealista_listings ADD COLUMN IF NOT EXISTS is_active BOOLEAN NOT NULL DEFAULT TRUE",
"ALTER TABLE idealista_listings ADD COLUMN IF NOT EXISTS status TEXT NOT NULL DEFAULT 'active'",
"ALTER TABLE idealista_listings ADD COLUMN IF NOT EXISTS missing_runs INTEGER NOT NULL DEFAULT 0",
"ALTER TABLE idealista_listings ADD COLUMN IF NOT EXISTS visible_runs INTEGER NOT NULL DEFAULT 1",
"ALTER TABLE idealista_listings ADD COLUMN IF NOT EXISTS days_to_displacement INTEGER",
"ALTER TABLE idealista_listings ADD COLUMN IF NOT EXISTS displacement_detection_lag_days INTEGER",
"ALTER TABLE idealista_listings ADD COLUMN IF NOT EXISTS rental_velocity_category TEXT NOT NULL DEFAULT 'unknown'",
"ALTER TABLE idealista_listings ADD COLUMN IF NOT EXISTS rental_velocity_basis TEXT NOT NULL DEFAULT 'visible_runs_3_day_cadence'",
"ALTER TABLE idealista_listings ADD COLUMN IF NOT EXISTS rental_velocity_classified_at TIMESTAMPTZ",
"ALTER TABLE idealista_listings ADD COLUMN IF NOT EXISTS deactivated_at TIMESTAMPTZ",
"ALTER TABLE idealista_listings ADD COLUMN IF NOT EXISTS reactivated_at TIMESTAMPTZ",
]
for sql in alterations:
cur.execute(sql)
cur.execute("CREATE INDEX IF NOT EXISTS idx_idealista_listings_listing_id ON idealista_listings(listing_id);")
cur.execute("CREATE INDEX IF NOT EXISTS idx_idealista_listings_district ON idealista_listings(district_slug);")
cur.execute("CREATE INDEX IF NOT EXISTS idx_idealista_listings_price ON idealista_listings(price_eur);")
cur.execute("CREATE INDEX IF NOT EXISTS idx_idealista_listings_last_seen ON idealista_listings(last_seen_at);")
cur.execute("CREATE INDEX IF NOT EXISTS idx_idealista_listings_status ON idealista_listings(status);")
cur.execute("CREATE INDEX IF NOT EXISTS idx_idealista_listings_missing ON idealista_listings(missing_runs);")
cur.execute("CREATE INDEX IF NOT EXISTS idx_idealista_listings_velocity ON idealista_listings(rental_velocity_category);")
cur.execute("CREATE INDEX IF NOT EXISTS idx_idealista_listings_visible_runs ON idealista_listings(visible_runs);")
cur.execute(
"""
CREATE TABLE IF NOT EXISTS idealista_listing_snapshots (
snapshot_id BIGSERIAL PRIMARY KEY,
run_id UUID REFERENCES idealista_runs(run_id) ON DELETE CASCADE,
listing_key TEXT NOT NULL,
listing_id TEXT,
district_slug TEXT,
price_eur NUMERIC,
area_m2 NUMERIC,
title TEXT,
url TEXT,
page_hint INTEGER,
position_in_page INTEGER,
global_position INTEGER,
listed_when TEXT,
estimated_published_at DATE,
content_hash TEXT,
observed_at TIMESTAMPTZ NOT NULL DEFAULT now(),
payload JSONB DEFAULT '{}'::jsonb,
UNIQUE(run_id, listing_key)
);
"""
)
snapshot_alterations = [
"ALTER TABLE idealista_listing_snapshots ADD COLUMN IF NOT EXISTS page_hint INTEGER",
"ALTER TABLE idealista_listing_snapshots ADD COLUMN IF NOT EXISTS position_in_page INTEGER",
"ALTER TABLE idealista_listing_snapshots ADD COLUMN IF NOT EXISTS global_position INTEGER",
"ALTER TABLE idealista_listing_snapshots ADD COLUMN IF NOT EXISTS listed_when TEXT",
"ALTER TABLE idealista_listing_snapshots ADD COLUMN IF NOT EXISTS estimated_published_at DATE",
]
for sql in snapshot_alterations:
cur.execute(sql)
cur.execute("CREATE INDEX IF NOT EXISTS idx_idealista_snapshots_listing_key ON idealista_listing_snapshots(listing_key);")
cur.execute("CREATE INDEX IF NOT EXISTS idx_idealista_snapshots_run ON idealista_listing_snapshots(run_id);")
cur.execute("CREATE INDEX IF NOT EXISTS idx_idealista_snapshots_observed ON idealista_listing_snapshots(observed_at);")
conn.commit()
def _none_if_nan(value: Any) -> Any:
if value is None:
return None
try:
if pd.isna(value):
return None
except Exception:
pass
if hasattr(value, "item"):
try:
return value.item()
except Exception:
pass
return value
def normalize_record(row: dict[str, Any]) -> dict[str, Any]:
out = {k: _none_if_nan(v) for k, v in row.items()}
for k in ["page_hint", "position_in_page", "global_position", "tipologia", "image_count"]:
if out.get(k) is not None:
out[k] = int(out[k])
for k in ["price_eur", "area_m2"]:
if out.get(k) is not None:
out[k] = float(out[k])
return out
def listing_key_for(row: dict[str, Any]) -> str | None:
listing_id = row.get("listing_id")
url = row.get("url")
if listing_id:
return str(listing_id)
if url:
return str(url)
return None
def content_hash(row: dict[str, Any]) -> str:
payload = {field: row.get(field) for field in WATCH_FIELDS}
raw = json.dumps(payload, ensure_ascii=False, sort_keys=True, default=str)
return hashlib.sha256(raw.encode("utf-8")).hexdigest()
def rental_velocity_category_from_visible_runs(visible_runs: int | None) -> str:
"""Clasifica velocidad de arrendamiento inferido para corrida cada tercer día.
Criterio:
- 1 corrida visible: very_fast
- 2 a 3 corridas visibles: fast
- 4 a 6 corridas visibles: normal
- 7 a 10 corridas visibles: slow
- 11+ corridas visibles: very_slow
"""
if visible_runs is None:
return "unknown"
try:
n = int(visible_runs)
except Exception:
return "unknown"
if n <= 0:
return "unknown"
if n == 1:
return "very_fast"
if 2 <= n <= 3:
return "fast"
if 4 <= n <= 6:
return "normal"
if 7 <= n <= 10:
return "slow"
return "very_slow"
def create_run(
conn: psycopg.Connection,
source_filename: str,
entries_count: int,
districts_queried: list[str] | None = None,
metadata: dict | None = None,
) -> str:
ensure_schema(conn)
with conn.cursor() as cur:
cur.execute(
"""
INSERT INTO idealista_runs (source_filename, entries_count, districts_queried, metadata)
VALUES (%s, %s, %s, %s)
RETURNING run_id;
""",
(source_filename, entries_count, Jsonb(districts_queried or []), Jsonb(metadata or {})),
)
row = cur.fetchone()
conn.commit()
return str(row["run_id"])
def finish_run(conn: psycopg.Connection, run_id: str, stats: dict[str, int], status: str = "success", error_message: str | None = None) -> None:
with conn.cursor() as cur:
cur.execute(
"""
UPDATE idealista_runs
SET finished_at = now(),
scraped_count = %s,
inserted_count = %s,
updated_count = %s,
unchanged_count = %s,
reactivated_count = %s,
missing_updated_count = %s,
probably_rented_count = %s,
snapshot_count = %s,
status = %s,
error_message = %s
WHERE run_id = %s;
""",
(
stats.get("scraped", 0),
stats.get("inserted", 0),
stats.get("updated", 0),
stats.get("unchanged", 0),
stats.get("reactivated", 0),
stats.get("missing_updated", 0),
stats.get("probably_rented", 0),
stats.get("snapshots", 0),
status,
error_message,
run_id,
),
)
conn.commit()
def _insert_snapshot(cur: psycopg.Cursor, row: dict[str, Any], key: str, run_id: str, h: str) -> bool:
cur.execute(
"""
INSERT INTO idealista_listing_snapshots (
run_id, listing_key, listing_id, district_slug, price_eur, area_m2, title, url,
page_hint, position_in_page, global_position, listed_when, estimated_published_at,
content_hash, payload
)
VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)
ON CONFLICT (run_id, listing_key) DO NOTHING;
""",
(
run_id, key, row.get("listing_id"), row.get("district_slug"), row.get("price_eur"), row.get("area_m2"),
row.get("title"), row.get("url"), row.get("page_hint"), row.get("position_in_page"), row.get("global_position"),
row.get("listed_when"), row.get("estimated_published_at"), h, Jsonb(row),
),
)
return cur.rowcount > 0
def upsert_listings(
conn: psycopg.Connection,
df: pd.DataFrame,
run_id: str,
districts_queried: list[str] | None = None,
probably_rented_threshold: int = DEFAULT_PROBABLY_RENTED_THRESHOLD,
not_seen_threshold: int = DEFAULT_NOT_SEEN_THRESHOLD,
) -> dict[str, int]:
ensure_schema(conn)
stats = {
"scraped": int(len(df)), "inserted": 0, "updated": 0, "unchanged": 0,
"reactivated": 0, "missing_updated": 0, "probably_rented": 0, "snapshots": 0,
}
observed_keys: set[str] = set()
with conn.cursor() as cur:
for _, raw_row in df.iterrows():
row = normalize_record(raw_row.to_dict())
key = listing_key_for(row)
if not key:
continue
# Evita sumar visible_runs más de una vez en la misma corrida si el mismo
# anuncio aparece duplicado por solapamiento de distritos o paginación.
if key in observed_keys:
continue
observed_keys.add(key)
h = content_hash(row)
cur.execute("SELECT content_hash, status, is_active FROM idealista_listings WHERE listing_key = %s", (key,))
existing = cur.fetchone()
was_reactivated = bool(existing and existing.get("status") in {"temporarily_missing", "not_seen_recently", "probably_rented", "possibly_removed"})
if existing is None:
cur.execute(
"""
INSERT INTO idealista_listings (
listing_key, listing_id, district_slug, source_input, page_hint, position_in_page, global_position,
url, title, address_text, location_full, price_eur, price_text, price_period,
tipologia, tipologia_text, area_m2, area_text, floor_info, listed_when, estimated_published_at,
tag, agency_name, agency_url, image_main_url, image_main_webp, image_count,
online_booking, has_map_button, last_run_id, is_active, status, missing_runs, visible_runs,
days_to_displacement, displacement_detection_lag_days,
rental_velocity_category, rental_velocity_basis, rental_velocity_classified_at,
content_hash, payload
)
VALUES (
%(listing_key)s, %(listing_id)s, %(district_slug)s, %(source_input)s, %(page_hint)s, %(position_in_page)s, %(global_position)s,
%(url)s, %(title)s, %(address_text)s, %(location_full)s, %(price_eur)s, %(price_text)s, %(price_period)s,
%(tipologia)s, %(tipologia_text)s, %(area_m2)s, %(area_text)s, %(floor_info)s, %(listed_when)s, %(estimated_published_at)s,
%(tag)s, %(agency_name)s, %(agency_url)s, %(image_main_url)s, %(image_main_webp)s, %(image_count)s,
%(online_booking)s, %(has_map_button)s, %(last_run_id)s, TRUE, 'active', 0, 1,
NULL, NULL, 'unknown', 'visible_runs_3_day_cadence', NULL,
%(content_hash)s, %(payload)s
);
""",
{**{c: row.get(c) for c in DB_COLUMNS}, "listing_key": key, "last_run_id": run_id, "content_hash": h, "payload": Jsonb(row)},
)
stats["inserted"] += 1
else:
changed = existing.get("content_hash") != h
set_status = "active"
cur.execute(
"""
UPDATE idealista_listings
SET listing_id = %(listing_id)s,
district_slug = %(district_slug)s,
source_input = %(source_input)s,
page_hint = %(page_hint)s,
position_in_page = %(position_in_page)s,
global_position = %(global_position)s,
url = %(url)s,
title = %(title)s,
address_text = %(address_text)s,
location_full = %(location_full)s,
price_eur = %(price_eur)s,
price_text = %(price_text)s,
price_period = %(price_period)s,
tipologia = %(tipologia)s,
tipologia_text = %(tipologia_text)s,
area_m2 = %(area_m2)s,
area_text = %(area_text)s,
floor_info = %(floor_info)s,
listed_when = %(listed_when)s,
estimated_published_at = %(estimated_published_at)s,
tag = %(tag)s,
agency_name = %(agency_name)s,
agency_url = %(agency_url)s,
image_main_url = %(image_main_url)s,
image_main_webp = %(image_main_webp)s,
image_count = %(image_count)s,
online_booking = %(online_booking)s,
has_map_button = %(has_map_button)s,
last_seen_at = now(),
last_run_id = %(last_run_id)s,
is_active = TRUE,
status = %(status)s,
missing_runs = 0,
visible_runs = COALESCE(visible_runs, 0) + 1,
days_to_displacement = NULL,
displacement_detection_lag_days = NULL,
rental_velocity_category = 'unknown',
rental_velocity_basis = 'visible_runs_3_day_cadence',
rental_velocity_classified_at = NULL,
deactivated_at = NULL,
reactivated_at = CASE WHEN %(was_reactivated)s THEN now() ELSE reactivated_at END,
content_hash = %(content_hash)s,
payload = %(payload)s,
updated_at = now()
WHERE listing_key = %(listing_key)s;
""",
{
**{c: row.get(c) for c in DB_COLUMNS},
"listing_key": key,
"last_run_id": run_id,
"status": set_status,
"was_reactivated": was_reactivated,
"content_hash": h,
"payload": Jsonb(row),
},
)
if was_reactivated:
stats["reactivated"] += 1
if changed or was_reactivated:
stats["updated"] += 1
else:
stats["unchanged"] += 1
if _insert_snapshot(cur, row, key, run_id, h):
stats["snapshots"] += 1
if districts_queried:
stats.update(_mark_missing(cur, observed_keys, districts_queried, probably_rented_threshold, not_seen_threshold))
conn.commit()
return stats
def _mark_missing(
cur: psycopg.Cursor,
observed_keys: set[str],
districts_queried: list[str],
probably_rented_threshold: int,
not_seen_threshold: int,
) -> dict[str, int]:
stats = {"missing_updated": 0, "probably_rented": 0}
district_list = sorted(set([d for d in districts_queried if d]))
if not district_list:
return stats
# PostgreSQL usa <> ALL(array) para excluir observados. Si observed_keys está vacío,
# usamos una lista imposible para evitar SQL dinámico peligroso.
observed_list = list(observed_keys) or ["__NO_OBSERVED_KEYS__"]
cur.execute(
"""
WITH candidates AS (
SELECT
listing_key,
missing_runs + 1 AS next_missing_runs,
COALESCE(visible_runs, 0) AS visible_runs,
status
FROM idealista_listings
WHERE district_slug = ANY(%s)
AND listing_key <> ALL(%s)
AND status <> 'probably_rented'
), classified AS (
SELECT
listing_key,
next_missing_runs,
visible_runs,
CASE
WHEN next_missing_runs >= %s THEN 'probably_rented'
WHEN next_missing_runs >= %s THEN 'not_seen_recently'
ELSE 'temporarily_missing'
END AS next_status,
CASE
WHEN visible_runs <= 0 THEN 'unknown'
WHEN visible_runs = 1 THEN 'very_fast'
WHEN visible_runs BETWEEN 2 AND 3 THEN 'fast'
WHEN visible_runs BETWEEN 4 AND 6 THEN 'normal'
WHEN visible_runs BETWEEN 7 AND 10 THEN 'slow'
ELSE 'very_slow'
END AS next_velocity_category
FROM candidates
), updated AS (
UPDATE idealista_listings l
SET missing_runs = c.next_missing_runs,
is_active = FALSE,
status = c.next_status,
deactivated_at = COALESCE(l.deactivated_at, now()),
days_to_displacement = CASE
WHEN c.next_status = 'probably_rented'
THEN GREATEST(0, EXTRACT(DAY FROM (l.last_seen_at - l.first_seen_at))::int)
ELSE l.days_to_displacement
END,
displacement_detection_lag_days = CASE
WHEN c.next_status = 'probably_rented'
THEN GREATEST(0, EXTRACT(DAY FROM (now() - l.last_seen_at))::int)
ELSE l.displacement_detection_lag_days
END,
rental_velocity_category = CASE
WHEN c.next_status = 'probably_rented' THEN c.next_velocity_category
ELSE l.rental_velocity_category
END,
rental_velocity_basis = CASE
WHEN c.next_status = 'probably_rented' THEN 'visible_runs_3_day_cadence'
ELSE l.rental_velocity_basis
END,
rental_velocity_classified_at = CASE
WHEN c.next_status = 'probably_rented' THEN COALESCE(l.rental_velocity_classified_at, now())
ELSE l.rental_velocity_classified_at
END,
updated_at = now()
FROM classified c
WHERE l.listing_key = c.listing_key
RETURNING l.status
)
SELECT
COUNT(*)::int AS missing_updated,
COUNT(*) FILTER (WHERE status = 'probably_rented')::int AS probably_rented
FROM updated;
""",
(district_list, observed_list, probably_rented_threshold, not_seen_threshold),
)
row = cur.fetchone() or {}
stats["missing_updated"] = int(row.get("missing_updated") or 0)
stats["probably_rented"] = int(row.get("probably_rented") or 0)
return stats
def _remove_timezone_if_datetime(value):
"""Convierte datetime con timezone a datetime sin timezone para exportar a Excel."""
if hasattr(value, "tzinfo") and value.tzinfo is not None:
try:
return value.replace(tzinfo=None)
except Exception:
return value
return value
def read_dataframe(conn: psycopg.Connection, sql: str, params: tuple | None = None) -> pd.DataFrame:
"""Lee una consulta SQL en DataFrame usando cursor psycopg3 y limpia timezones para Excel."""
with conn.cursor() as cur:
cur.execute(sql, params or ())
rows = cur.fetchall()
columns = [desc.name for desc in cur.description] if cur.description else []
df = pd.DataFrame(rows, columns=columns)
# Excel no soporta datetimes con timezone.
# Convertimos cualquier columna datetime tz-aware a datetime sin timezone.
for col in df.columns:
if pd.api.types.is_datetime64tz_dtype(df[col]):
df[col] = df[col].dt.tz_localize(None)
elif df[col].dtype == "object":
df[col] = df[col].apply(_remove_timezone_if_datetime)
return df
def write_sheet(writer, conn, sql: str, sheet_name: str):
df = read_dataframe(conn, sql)
if df.empty:
df = pd.DataFrame({"mensaje": ["Sin datos disponibles"]})
df.to_excel(writer, sheet_name=sheet_name, index=False)
def export_incremental_excel(conn: psycopg.Connection, output_xlsx: str) -> str:
"""Exporta workbook analítico completo desde Neon."""
base_sql = """
SELECT
listing_key, listing_id, district_slug, status, is_active, missing_runs, visible_runs,
rental_velocity_category,
CASE rental_velocity_category
WHEN 'very_fast' THEN 'Muy rápido'
WHEN 'fast' THEN 'Rápido'
WHEN 'normal' THEN 'Normal'
WHEN 'slow' THEN 'Lento'
WHEN 'very_slow' THEN 'Muy lento'
ELSE 'Sin clasificar'
END AS rental_velocity_label,
rental_velocity_basis, days_to_displacement, displacement_detection_lag_days,
rental_velocity_classified_at,
first_seen_at, last_seen_at, deactivated_at, reactivated_at,
EXTRACT(DAY FROM (COALESCE(deactivated_at, last_seen_at, now()) - first_seen_at))::int AS days_visible,
estimated_published_at,
CASE WHEN estimated_published_at IS NOT NULL THEN (CURRENT_DATE - estimated_published_at)::int END AS estimated_days_on_portal,
price_eur, area_m2,
CASE WHEN area_m2 IS NOT NULL AND area_m2 <> 0 THEN ROUND((price_eur / area_m2)::numeric, 2) END AS eur_m2,
page_hint, position_in_page, global_position,
title, url, address_text, location_full, price_text, price_period, tipologia, tipologia_text,
agency_name, agency_url, listed_when, tag, source_input, last_run_id, updated_at
FROM idealista_listings
ORDER BY district_slug, price_eur NULLS LAST;
"""
mayor_desplazamiento_sql = """
SELECT
listing_key, listing_id, district_slug, status, rental_velocity_category,
CASE rental_velocity_category
WHEN 'very_fast' THEN 'Muy rápido'
WHEN 'fast' THEN 'Rápido'
WHEN 'normal' THEN 'Normal'
WHEN 'slow' THEN 'Lento'
WHEN 'very_slow' THEN 'Muy lento'
ELSE 'Sin clasificar'
END AS rental_velocity_label,
visible_runs, missing_runs,
first_seen_at, last_seen_at, deactivated_at,
days_to_displacement,
displacement_detection_lag_days,
price_eur, area_m2,
title, url, address_text, location_full, listed_when, estimated_published_at
FROM idealista_listings
WHERE status = 'probably_rented'
ORDER BY visible_runs ASC NULLS LAST,
days_to_displacement ASC NULLS LAST,
displacement_detection_lag_days ASC NULLS LAST,
deactivated_at DESC NULLS LAST
LIMIT 500;
"""
mayor_antiguedad_sql = """
SELECT listing_key, listing_id, district_slug, status, first_seen_at, last_seen_at,
EXTRACT(DAY FROM (now() - first_seen_at))::int AS days_in_base,
price_eur, area_m2, title, url, address_text, location_full
FROM idealista_listings
ORDER BY first_seen_at ASC
LIMIT 500;
"""
menor_antiguedad_sql = """
SELECT listing_key, listing_id, district_slug, status, first_seen_at, last_seen_at,
EXTRACT(DAY FROM (now() - first_seen_at))::int AS days_in_base,
price_eur, area_m2, title, url, address_text, location_full
FROM idealista_listings
ORDER BY first_seen_at DESC
LIMIT 500;
"""
cambios_precio_sql = """
WITH ordered AS (
SELECT
listing_key,
district_slug,
(ARRAY_AGG(price_eur ORDER BY observed_at ASC))[1] AS first_price_eur,
(ARRAY_AGG(price_eur ORDER BY observed_at DESC))[1] AS last_price_eur,
MIN(price_eur) AS min_price_eur,
MAX(price_eur) AS max_price_eur,
MIN(observed_at) AS first_observed_at,
MAX(observed_at) AS last_observed_at,
COUNT(*) AS observations
FROM idealista_listing_snapshots
WHERE price_eur IS NOT NULL
GROUP BY listing_key, district_slug
)
SELECT
o.*,
(last_price_eur - first_price_eur) AS change_abs_eur,
ROUND(((last_price_eur - first_price_eur) / NULLIF(first_price_eur, 0)) * 100, 2) AS change_pct
FROM ordered o
WHERE observations > 1 AND first_price_eur IS DISTINCT FROM last_price_eur
ORDER BY change_abs_eur ASC NULLS LAST;
"""
categorias_sql = """
SELECT
rental_velocity_category,
CASE rental_velocity_category
WHEN 'very_fast' THEN 'Muy rápido'
WHEN 'fast' THEN 'Rápido'
WHEN 'normal' THEN 'Normal'
WHEN 'slow' THEN 'Lento'
WHEN 'very_slow' THEN 'Muy lento'
ELSE 'Sin clasificar'
END AS rental_velocity_label,
COUNT(*)::int AS listings_count,
ROUND(AVG(visible_runs)::numeric, 2) AS avg_visible_runs,
ROUND(AVG(days_to_displacement)::numeric, 2) AS avg_days_to_displacement,
ROUND(AVG(price_eur)::numeric, 2) AS avg_price_eur
FROM idealista_listings
WHERE status = 'probably_rented'
GROUP BY rental_velocity_category
ORDER BY MIN(CASE rental_velocity_category
WHEN 'very_fast' THEN 1
WHEN 'fast' THEN 2
WHEN 'normal' THEN 3
WHEN 'slow' THEN 4
WHEN 'very_slow' THEN 5
ELSE 6
END);
"""
runs_sql = """
SELECT run_id, started_at, finished_at, source_filename, entries_count, scraped_count,
inserted_count, updated_count, unchanged_count, reactivated_count,
missing_updated_count, probably_rented_count, snapshot_count, status,
districts_queried, error_message
FROM idealista_runs
ORDER BY run_id DESC
LIMIT 200;
"""
with pd.ExcelWriter(output_xlsx, engine="openpyxl") as writer:
write_sheet(writer, conn, base_sql, "Base incremental")
write_sheet(writer, conn, mayor_desplazamiento_sql, "Mayor desplazamiento")
write_sheet(writer, conn, categorias_sql, "Categorias velocidad")
write_sheet(writer, conn, mayor_antiguedad_sql, "Mayor antiguedad")
write_sheet(writer, conn, menor_antiguedad_sql, "Menor antiguedad")
write_sheet(writer, conn, cambios_precio_sql, "Cambios precio")
write_sheet(writer, conn, runs_sql, "Corridas")
|