Facility: 004158
I-95 Mini Storage
- Facility ID
- 004158
- Name
- I-95 Mini Storage
- URL
- http://www.i-95ministorage.com/
- Address
- 1149 W Broad St, St Pauls, NC 28384, USA, St Pauls, North Carolina 28384
- Platform
- custom_facility_004158
- Parser File
- src/parsers/custom/facility_004158_parser.py
- Last Scraped
- 2026-03-27 13:46:46.073448
- Created
- 2026-03-20 23:33:53.011799
- Updated
- 2026-03-27 13:46:46.073448
- Parser Status
- ⚠ Needs Fix
- Status Reason
- Parser returned 0 units
- Last Healing Attempt
- Not attempted
Parser Source (src/parsers/custom/facility_004158_parser.py)
"""Parser for I-95 Mini Storage (Wix brochure site, no pricing data)."""
from __future__ import annotations
import re
from bs4 import BeautifulSoup
from src.parsers.base import BaseParser, ParseResult, UnitResult
class Facility004158Parser(BaseParser):
"""Extract storage units from I-95 Mini Storage.
This is a Wix single-page brochure site (i-95ministorage.com) that does
not publish unit sizes or pricing online. The page contains only marketing
copy, a contact form, packing tips, and a tenant-login link to AppFolio.
The parser still attempts regex extraction in case the site is updated to
include pricing in the future, but currently returns 0 units with a
diagnostic warning.
"""
platform = "custom_facility_004158"
_SIZE_PRICE_RE = re.compile(
r"(\d+\s*['\u2032]?\s*[xX\u00d7]\s*\d+\s*['\u2032]?)"
r"[^\$]{0,120}"
r"\$(\d[\d,.]*)",
re.DOTALL,
)
_PRICE_SIZE_RE = re.compile(
r"\$(\d[\d,.]*)"
r".{0,120}"
r"(\d+\s*['\u2032]?\s*[xX\u00d7]\s*\d+\s*['\u2032]?)",
re.DOTALL,
)
def parse(self, html: str, url: str = "") -> ParseResult:
soup = BeautifulSoup(html, "lxml")
result = ParseResult(platform=self.platform, parser_name=self.__class__.__name__)
for tag in soup.find_all(["script", "style"]):
tag.decompose()
body_text = soup.get_text(separator="\n")
seen: set[tuple[str, str]] = set()
# Try size-then-price pattern
for m in self._SIZE_PRICE_RE.finditer(body_text):
size_text = m.group(1).strip()
price_text = m.group(2).strip()
key = (size_text, price_text)
if key in seen:
continue
seen.add(key)
unit = UnitResult()
unit.size = size_text
w, ln, sq = self.normalize_size(size_text)
if w is not None:
unit.metadata = {"width": w, "length": ln, "sqft": sq}
unit.price = self.normalize_price(price_text)
unit.description = m.group(0).strip()[:200]
if unit.size or unit.price:
result.units.append(unit)
# Try price-then-size pattern if no results
if not result.units:
for m in self._PRICE_SIZE_RE.finditer(body_text):
price_text = m.group(1).strip()
size_text = m.group(2).strip()
key = (size_text, price_text)
if key in seen:
continue
seen.add(key)
unit = UnitResult()
unit.size = size_text
w, ln, sq = self.normalize_size(size_text)
if w is not None:
unit.metadata = {"width": w, "length": ln, "sqft": sq}
unit.price = self.normalize_price(price_text)
unit.description = m.group(0).strip()[:200]
if unit.size or unit.price:
result.units.append(unit)
if not result.units:
result.warnings.append(
"No units found: site is a Wix brochure page with no pricing data. "
"Tenants are directed to AppFolio (wellon.appfolio.com) for account access."
)
return result
Scrape Runs (4)
Run #1111 Details
- Status
- exported
- Parser Used
- Facility004158Parser
- Platform Detected
- table_layout
- Units Found
- 0
- Stage Reached
- exported
- Timestamp
- 2026-03-23 02:48:09.307614
Timing
| Stage | Duration |
|---|---|
| Fetch | 4521ms |
| Detect | 57ms |
| Parse | 24ms |
| Export | 4ms |
Snapshot: 004158_20260323T024813Z.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:46:46.053886
No units extracted for 004158
Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 004158
parse
_WarningAsException
scraper
no_units_extracted
warning
Run #N/A | 2026-03-27 13:46:44.792572
No units extracted for 004158
Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 004158
parse
_WarningAsException
scraper
no_units_extracted
warning
Run #N/A | 2026-03-23 02:48:13.934777
No units extracted for 004158
Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 004158
parse
_WarningAsException
scraper
no_units_extracted
warning
Run #N/A | 2026-03-21 18:37:53.766135
No units extracted for 004158
Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 004158