Facility: 000806
Earntrust Mini Storage
- 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 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)
-
exported Run #18332026-03-27 13:52:47.040605 | Facility000806Parser
-
exported Run #18322026-03-27 13:52:44.883415 | Facility000806Parser
-
exported Run #11792026-03-23 02:54:05.527297 | Facility000806Parser
-
exported Run #6862026-03-21 18:45:20.047410 | Facility000806Parser
-
exported Run #2352026-03-14 16:27:23.443452 | Facility000806Parser
Run #686 Details
- Status
- exported
- Parser Used
- Facility000806Parser
- Platform Detected
- table_layout
- Units Found
- 0
- Stage Reached
- exported
- Timestamp
- 2026-03-21 18:45:20.047410
Timing
| Stage | Duration |
|---|---|
| Fetch | 2945ms |
| Detect | 16ms |
| Parse | 11ms |
| Export | 4ms |
Snapshot: 000806_20260321T184522Z.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