Facility: 000806

Earntrust Mini 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
000806
Name
Earntrust Mini Storage
URL
http://earntrustministorage.com/
Address
101 Lark St, Andalusia, AL 36420, USA, Andalusia, Alabama 36420
Platform
custom_facility_000806
Parser File
src/parsers/custom/facility_000806_parser.py
Last Scraped
2026-03-27 13:52:49.478443
Created
2026-03-14 16:21:53.706708
Updated
2026-03-27 13:52:49.478443
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_000806_parser.py)
"""Parser for Earntrust Mini Storage (facility 000806).

This facility's website (earntrustministorage.com) does not publish unit sizes
or pricing on any page.  The homepage, /services/, and /contact-us/ contain only
general marketing copy and contact information.

The parser returns zero units with an explicit warning so the pipeline can
classify it as ``no_pricing`` rather than a parse error.
"""

from __future__ import annotations

from bs4 import BeautifulSoup

from src.parsers.base import BaseParser, ParseResult


class Facility000806Parser(BaseParser):
    """Earntrust Mini Storage -- site has no published pricing."""

    platform = "custom_facility_000806"

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

        # Strip non-content tags
        for tag in soup.find_all(["script", "style"]):
            tag.decompose()

        body_text = soup.get_text(separator=" ", strip=True).lower()

        # Confirm we're on the right site
        if "earntrust" not in body_text:
            result.warnings.append("Page does not appear to be Earntrust Mini Storage")
            return result

        result.warnings.append(
            "Site does not publish unit sizes or pricing. "
            "Homepage and /services/ contain only marketing copy and contact info."
        )
        return result

Scrape Runs (5)

Run #1833 Details

Status
exported
Parser Used
Facility000806Parser
Platform Detected
table_layout
Units Found
0
Stage Reached
exported
Timestamp
2026-03-27 13:52:47.040605
Timing
Stage Duration
Fetch2351ms
Detect10ms
Parse6ms
Export14ms

Snapshot: 000806_20260327T135249Z.html · Show Snapshot · Open in New Tab

No units found in this run.

All Failures for this Facility (5)

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

No units extracted for 000806

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

No units extracted for 000806

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

No units extracted for 000806

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

No units extracted for 000806

Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 000806
parse _WarningAsException scraper no_units_extracted warning Run #N/A | 2026-03-14 16:27:25.856449

No units extracted for 000806

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

← Back to dashboard