Facility: 099273

Caseville Parkside 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
099273
Name
Caseville Parkside Storage
URL
http://casevillestorage.com/
Address
6277 Main St, Caseville, MI 48725, USA, Caseville, Michigan 48725
Platform
custom_facility_099273
Parser File
src/parsers/custom/facility_099273_parser.py
Last Scraped
2026-03-27 13:47:32.591711
Created
2026-03-20 23:33:53.011799
Updated
2026-03-27 13:47:32.591711
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_099273_parser.py)
"""Parser for Caseville Parkside Storage."""

from __future__ import annotations

from bs4 import BeautifulSoup

from src.parsers.base import BaseParser, ParseResult


class Facility099273Parser(BaseParser):
    """Extract storage units from Caseville Parkside Storage (Wix site).

    The homepage snapshot does not contain unit sizes or prices.
    """

    platform = "custom_facility_099273"

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

        result.warnings.append("No unit sizes or prices found on homepage")

        return result

Scrape Runs (4)

Run #624 Details

Status
exported
Parser Used
Facility099273Parser
Platform Detected
table_layout
Units Found
0
Stage Reached
exported
Timestamp
2026-03-21 18:38:50.293962
Timing
Stage Duration
Fetch5125ms
Detect41ms
Parse30ms
Export5ms

Snapshot: 099273_20260321T183855Z.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:32.570369

No units extracted for 099273

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

No units extracted for 099273

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

No units extracted for 099273

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

No units extracted for 099273

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

← Back to dashboard