Facility: 059892
Island Self Storage
- Facility ID
- 059892
- Name
- Island Self Storage
- URL
- http://kislandselfstorage.com/
- Address
- 2205 Main St, Chester, MD 21619, USA, Chester, Maryland 21619
- Platform
- custom_facility_059892
- Parser File
- src/parsers/custom/facility_059892_parser.py
- Last Scraped
- 2026-03-27 13:41:45.102375
- Created
- 2026-03-23 02:35:08.816820
- Updated
- 2026-03-27 13:41:45.102375
- Parser Status
- ⚠ Needs Fix
- Status Reason
- Parser returned 0 units
- Last Healing Attempt
- Not attempted
Parser Source (src/parsers/custom/facility_059892_parser.py)
"""Parser for Island Self Storage."""
from __future__ import annotations
from bs4 import BeautifulSoup
from src.parsers.base import BaseParser, ParseResult
class Facility059892Parser(BaseParser):
"""Extract storage units from Island Self Storage (Wix site).
The site is a brochure-style page with general info about
storage services. No unit sizes or prices are listed —
says 'Contact Us for Monthly Rates'.
"""
platform = "custom_facility_059892"
def parse(self, html: str, url: str = "") -> ParseResult:
BeautifulSoup(html, "lxml")
result = ParseResult(platform=self.platform, parser_name=self.__class__.__name__)
# No unit sizes or prices listed
result.warnings.append("No pricing on page — site says 'Contact Us for Monthly Rates'")
return result
Scrape Runs (3)
Run #1579 Details
- Status
- exported
- Parser Used
- Facility059892Parser
- Platform Detected
- table_layout
- Units Found
- 0
- Stage Reached
- exported
- Timestamp
- 2026-03-27 13:41:42.688989
Timing
| Stage | Duration |
|---|---|
| Fetch | 2294ms |
| Detect | 20ms |
| Parse | 8ms |
| Export | 15ms |
Snapshot: 059892_20260327T134144Z.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:45.080079
No units extracted for 059892
Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 059892
parse
_WarningAsException
scraper
no_units_extracted
warning
Run #N/A | 2026-03-27 13:41:45.079405
No units extracted for 059892
Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 059892
parse
_WarningAsException
scraper
no_units_extracted
warning
Run #N/A | 2026-03-23 02:41:36.776509
No units extracted for 059892
Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 059892