Facility: 047375

Paoli 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
047375
Name
Paoli Storage
URL
https://www.storepaoli.com/
Address
2531 11th St, Rockford, IL 61104, USA, Rockford, Illinois 61104
Platform
custom_facility_047375
Parser File
src/parsers/custom/facility_047375_parser.py
Last Scraped
2026-03-27 13:47:11.744246
Created
2026-03-20 23:33:53.011799
Updated
2026-03-27 13:47:11.744246
Parser & Healing Diagnosis needs_fix
Parser Status
⚠ Needs Fix
Status Reason
Parser returned 0 units
Last Healing Attempt
Not attempted
Parser Source (src/parsers/custom/facility_047375_parser.py)
"""Parser for Paoli Storage (Wix site, vehicle storage only, no unit data)."""

from __future__ import annotations

import re

from bs4 import BeautifulSoup

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


class Facility047375Parser(BaseParser):
    """Extract storage units from Paoli Storage.

    This is a Wix site for heated indoor vehicle storage (cars, boats, RVs).
    No self-storage unit sizes or pricing are listed on the homepage.
    """

    platform = "custom_facility_047375"

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

        for tag in soup.find_all(["script", "style"]):
            tag.decompose()

        text = soup.get_text(separator="\n")

        # Try to extract any size x price patterns
        size_price_re = re.compile(
            r"(\d+)\s*['\u2019\u2032]?\s*[xX×]\s*(\d+)\s*['\u2019\u2032]?"
            r"[^\$]{0,80}"
            r"\$(\d[\d,.]*)",
            re.DOTALL,
        )
        for m in size_price_re.finditer(text):
            w, ln = float(m.group(1)), float(m.group(2))
            if w < 3 or ln < 3:
                continue
            unit = UnitResult()
            unit.size = f"{int(w)}x{int(ln)}"
            unit.price = self.normalize_price(m.group(3))
            unit.metadata = {"width": w, "length": ln, "sqft": w * ln}
            result.units.append(unit)

        if not result.units:
            result.warnings.append("No units found - vehicle storage site without unit pricing")

        return result

Scrape Runs (4)

Run #1704 Details

Status
exported
Parser Used
Facility047375Parser
Platform Detected
table_layout
Units Found
0
Stage Reached
exported
Timestamp
2026-03-27 13:47:05.076901
Timing
Stage Duration
Fetch3409ms
Detect26ms
Parse12ms
Export15ms

Snapshot: 047375_20260327T134708Z.html · Show Snapshot · Open in New Tab

No units found in this run.

All Failures for this Facility (4)

parse _WarningAsException scraper no_units_extracted warning Run #N/A | 2026-03-27 13:47:11.724769

No units extracted for 047375

Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 047375
parse _WarningAsException scraper no_units_extracted warning Run #N/A | 2026-03-27 13:47:08.610511

No units extracted for 047375

Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 047375
parse _WarningAsException scraper no_units_extracted warning Run #N/A | 2026-03-23 02:48:41.182549

No units extracted for 047375

Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 047375
parse _WarningAsException scraper no_units_extracted warning Run #N/A | 2026-03-21 18:38:20.335382

No units extracted for 047375

Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 047375

← Back to dashboard