Facility: 065166

Chelan Station Express Storage

Stale Data Warning: This facility has not been successfully scraped in 26 days (threshold: 3 days). Data may be outdated.
Facility Information active
Facility ID
065166
Name
Chelan Station Express Storage
URL
https://www.expstorage.com/410-wa-150-chelan-wa-98817
Address
410 Wa-150, Chelan Falls, WA 98817, USA, Chelan Falls, Washington 98817
Platform
custom_facility_065166
Parser File
src/parsers/custom/facility_065166_parser.py
Last Scraped
2026-03-27 14:02:44.888517
Created
2026-03-14 16:21:53.706708
Updated
2026-03-27 14:02:44.916061
Parser & Healing Diagnosis working
Parser Status
✓ Working
Status Reason
N/A
Last Healing Attempt
Not attempted
Parser Source (src/parsers/custom/facility_065166_parser.py)
"""Parser for Chelan Station Express Storage."""

from __future__ import annotations

import re

from bs4 import BeautifulSoup

from src.parsers.base import BaseParser, ParseResult, UnitResult


class Facility065166Parser(BaseParser):
    """Extract storage units from Chelan Station Express Storage using table layout."""

    platform = "custom_facility_065166"

    def parse(self, html: str, url: str = "") -> ParseResult:
        soup = BeautifulSoup(html, "lxml")
        result = ParseResult(platform=self.platform, parser_name=self.__class__.__name__)

        table = soup.select_one("table._2QREMkZenGaFOjxHn8CDhU.table")
        if not table:
            # Fallback: find table with most price-containing rows
            tables = soup.find_all("table")
            best, best_count = None, 0
            for t in tables:
                c = sum(1 for r in t.find_all("tr") if "$" in r.get_text())
                if c > best_count:
                    best_count = c
                    best = t
            table = best

        if not table:
            result.warnings.append("No pricing table found")
            return result

        rows = table.find_all("tr")
        for row in rows:
            cells = row.find_all(["td", "th"])
            if len(cells) < 2:
                continue

            row_text = row.get_text()
            # Skip header rows
            if not re.search(r"\$\d+", row_text) and not re.search(r"\d+\s*[\'\'xX]\s*\d+", row_text):
                continue

            unit = UnitResult()

            # Extract size
            size_text = cells[1].get_text(strip=True)
            if size_text:
                unit.size = size_text
                w, ln, sq = self.normalize_size(size_text)
                if w is not None:
                    unit.metadata = {"width": w, "length": ln, "sqft": sq}

            # Extract price
            price_text = cells[2].get_text(strip=True)
            if price_text:
                # Try to find the price in this cell
                price_match = re.search(r"\$(\d[\d,.]*)", price_text)
                if price_match:
                    unit.price = self.normalize_price(price_match.group(1))

            unit.description = row.get_text(separator=" ", strip=True)

            if unit.size or unit.price:
                result.units.append(unit)

        if not result.units:
            result.warnings.append("No units found in table")

        return result

Scrape Runs (5)

Run #1309 Details

Status
exported
Parser Used
Facility065166Parser
Platform Detected
storageunitsoftware
Units Found
10
Stage Reached
exported
Timestamp
2026-03-23 03:04:40.939396
Timing
Stage Duration
Fetch3883ms
Detect65ms
Parse31ms
Export7ms

Snapshot: 065166_20260323T030444Z.html · Show Snapshot · Open in New Tab

Parsed Units (10)

Self Storage, Drive Up50% Off Two Months

$56.00/mo

Self Storage, Inside, Ground Floor Access50% Off Two Months

$54.00/mo

Parking, RV/Boat/Vehicle/Parking, Inside

$123.00/mo

Parking, RV/Boat/Vehicle/Parking, Inside

$165.00/mo

Parking, RV/Boat/Vehicle/Parking, Inside

$182.00/mo

Parking, RV/Boat/Vehicle/Parking, Inside

$215.00/mo

Parking, RV/Boat/Vehicle/Parking, Outside50% Off Two Months

$20.00/mo

Parking, RV/Boat/Vehicle/Parking, Inside

$300.00/mo

Parking, RV/Boat/Vehicle/Parking, Outside

$57.00/mo

Parking, RV/Boat/Vehicle/Parking, Outside50% Off Two Months

$35.00/mo

← Back to dashboard