Facility: 090377

Route 2 Self 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
090377
Name
Route 2 Self Storage
URL
https://www.rte2selfstorage.com/
Address
3120 N Lakeshore Dr, Port Clinton, OH 43452, USA, Port Clinton, Ohio 43452
Platform
custom_facility_090377
Parser File
src/parsers/custom/facility_090377_parser.py
Last Scraped
2026-03-27 13:47:19.918316
Created
2026-03-20 23:33:53.011799
Updated
2026-03-27 13:47:19.918316
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_090377_parser.py)
"""Parser for Route 2 Self Storage."""

from __future__ import annotations

from bs4 import BeautifulSoup

from src.parsers.base import BaseParser, ParseResult


class Facility090377Parser(BaseParser):
    """Extract storage units from Route 2 Self Storage (Wix site).

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

    platform = "custom_facility_090377"

    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 #1708 Details

Status
exported
Parser Used
Facility090377Parser
Platform Detected
table_layout
Units Found
0
Stage Reached
exported
Timestamp
2026-03-27 13:47:14.880735
Timing
Stage Duration
Fetch4827ms
Detect29ms
Parse16ms
Export14ms

Snapshot: 090377_20260327T134719Z.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:19.896595

No units extracted for 090377

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

No units extracted for 090377

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

No units extracted for 090377

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

No units extracted for 090377

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

← Back to dashboard