Facility: 046061

84th Street 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
046061
Name
84th Street Storage
URL
https://www.84thstreetstorage.com/
Address
985 84th St SW, Byron Center, MI 49315, USA, Byron Center, Michigan 49315
Platform
custom_facility_046061
Parser File
src/parsers/custom/facility_046061_parser.py
Last Scraped
2026-03-27 13:47:06.476672
Created
2026-03-20 23:33:53.011799
Updated
2026-03-27 13:47:06.476672
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_046061_parser.py)
"""Parser for 84th Street Storage (Wix 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 Facility046061Parser(BaseParser):
    """Extract storage units from 84th Street Storage.

    This is a Wix brochure site. The homepage mentions 'UNIT SIZES' in
    the navigation but does not display any unit sizes or prices.
    """

    platform = "custom_facility_046061"

    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)

        # Try size-only extraction
        if not result.units:
            size_re = re.compile(r"(\d+)\s*['\u2019\u2032]?\s*[xX×]\s*(\d+)")
            seen: set[str] = set()
            for m in size_re.finditer(text):
                w, ln = float(m.group(1)), float(m.group(2))
                if w < 3 or ln < 3:
                    continue
                key = f"{int(w)}x{int(ln)}"
                if key in seen:
                    continue
                seen.add(key)
                unit = UnitResult()
                unit.size = key
                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 #1702 Details

Status
exported
Parser Used
Facility046061Parser
Platform Detected
table_layout
Units Found
0
Stage Reached
exported
Timestamp
2026-03-27 13:47:01.440797
Timing
Stage Duration
Fetch2594ms
Detect75ms
Parse7ms
Export17ms

Snapshot: 046061_20260327T134704Z.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:06.449828

No units extracted for 046061

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

No units extracted for 046061

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

No units extracted for 046061

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

No units extracted for 046061

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

← Back to dashboard