Facility: 062142

Glen Lake 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
062142
Name
Glen Lake Storage
URL
https://www.glenlakeselfstorage.com/
Address
12777 S Benzonia Trail, Empire, MI 49630, USA, Empire, Michigan 49630
Platform
custom_facility_062142
Parser File
src/parsers/custom/facility_062142_parser.py
Last Scraped
2026-03-27 13:47:14.977136
Created
2026-03-20 23:33:53.011799
Updated
2026-03-27 13:47:14.977136
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_062142_parser.py)
"""Parser for Glen Lake Storage."""

from __future__ import annotations

from bs4 import BeautifulSoup

from src.parsers.base import BaseParser, ParseResult


class Facility062142Parser(BaseParser):
    """Extract storage units from Glen Lake Storage (Wix site).

    The homepage is a gallery/brochure page with no unit sizes or
    prices listed. The site has a separate 'Rent' page but the
    snapshot is of the home page only.
    """

    platform = "custom_facility_062142"

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

Status
exported
Parser Used
Facility062142Parser
Platform Detected
table_layout
Units Found
0
Stage Reached
exported
Timestamp
2026-03-21 18:38:21.191412
Timing
Stage Duration
Fetch5070ms
Detect56ms
Parse19ms
Export3ms

Snapshot: 062142_20260321T183826Z.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:14.958799

No units extracted for 062142

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

No units extracted for 062142

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

No units extracted for 062142

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

No units extracted for 062142

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

← Back to dashboard