Facility: 021039

Clark Secure 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
021039
Name
Clark Secure Storage
URL
http://www.clarksecurestorage.com/
Address
2659 Lake Rd, Clark, PA 16113, USA, Clark, Pennsylvania 16113
Platform
custom_facility_021039
Parser File
src/parsers/custom/facility_021039_parser.py
Last Scraped
2026-03-27 13:46:58.168027
Created
2026-03-20 23:33:53.011799
Updated
2026-03-27 13:46:58.168027
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_021039_parser.py)
"""Parser for Clark Secure Storage (brochure site, no unit pricing data)."""

from __future__ import annotations

import re

from bs4 import BeautifulSoup

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


class Facility021039Parser(BaseParser):
    """Extract storage units from Clark Secure Storage.

    This is a Wix brochure site that lists storage types (indoor, outdoor,
    boat, RV, vehicle) but does not publish unit sizes or prices.
    """

    platform = "custom_facility_021039"

    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 as a fallback
        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 - brochure site without pricing data")

        return result

Scrape Runs (4)

Run #617 Details

Status
exported
Parser Used
Facility021039Parser
Platform Detected
table_layout
Units Found
0
Stage Reached
exported
Timestamp
2026-03-21 18:37:54.708228
Timing
Stage Duration
Fetch12830ms
Detect109ms
Parse57ms
Export3ms

Snapshot: 021039_20260321T183807Z.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:46:58.148215

No units extracted for 021039

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

No units extracted for 021039

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

No units extracted for 021039

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

No units extracted for 021039

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

← Back to dashboard