Facility: 080998

Winona 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
080998
Name
Winona Self Storage
URL
http://www.winonaselfstorage.com/
Address
563 Huff St, Winona, MN 55987, USA, Winona, Minnesota 55987
Platform
custom_facility_080998
Parser File
src/parsers/custom/facility_080998_parser.py
Last Scraped
2026-03-27 13:41:56.690607
Created
2026-03-23 02:35:08.816820
Updated
2026-03-27 13:41:56.690607
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_080998_parser.py)
"""Parser for Winona Self Storage."""

from __future__ import annotations

from bs4 import BeautifulSoup

from src.parsers.base import BaseParser, ParseResult


class Facility080998Parser(BaseParser):
    """Extract storage units from Winona Self Storage (Wix site).

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

    platform = "custom_facility_080998"

    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 (3)

Run #1054 Details

Status
exported
Parser Used
Facility080998Parser
Platform Detected
table_layout
Units Found
0
Stage Reached
exported
Timestamp
2026-03-23 02:41:52.111427
Timing
Stage Duration
Fetch3237ms
Detect28ms
Parse14ms
Export3ms

Snapshot: 080998_20260323T024155Z.html · Show Snapshot · Open in New Tab

No units found in this run.

All Failures for this Facility (3)

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

No units extracted for 080998

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

No units extracted for 080998

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

No units extracted for 080998

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

← Back to dashboard