Facility: 001972
Mountain Country Storage
- Facility ID
- 001972
- Name
- Mountain Country Storage
- URL
- https://www.mountaincountrystorage.com/
- Address
- 1051 Dry Branch Rd, Blue Ridge, GA 30513, USA, Blue Ridge, Georgia 30513
- Platform
- custom_facility_001972
- Parser File
- src/parsers/custom/facility_001972_parser.py
- Last Scraped
- 2026-03-27 13:39:30.996318
- Created
- 2026-03-23 02:35:08.816820
- Updated
- 2026-03-27 13:39:30.996318
- Parser Status
- ⚠ Needs Fix
- Status Reason
- Parser returned 0 units
- Last Healing Attempt
- Not attempted
Parser Source (src/parsers/custom/facility_001972_parser.py)
"""Parser for Mountain Country Storage (mountaincountrystorage.com)."""
from __future__ import annotations
import re
from bs4 import BeautifulSoup
from src.parsers.base import BaseParser, ParseResult, UnitResult
class Facility001972Parser(BaseParser):
"""Extract storage units from Mountain Country Storage.
Unit data is in modal divs with id="rent-unit-type-id-XXXXX-modal".
Each modal contains the unit title (with size) and monthly price.
"""
platform = "custom_facility_001972"
def parse(self, html: str, url: str = "") -> ParseResult:
soup = BeautifulSoup(html, "lxml")
result = ParseResult(platform=self.platform, parser_name=self.__class__.__name__)
# Find all unit modals: <div id="rent-unit-type-id-XXXXX-modal">
modals = [e for e in soup.find_all(True) if e.get("id", "").startswith("rent-unit-type")]
for modal in modals:
title_elem = modal.select_one(".modal-title")
if not title_elem:
continue
title = title_elem.get_text(strip=True)
# Title format: "Non-climate storage (5 x 10 x 8)" or "Covered parking (11 x 30 x 12.5)"
size_m = re.search(r"\((\d+\s*x\s*\d+)", title, re.I)
if not size_m:
continue
size_str = size_m.group(1).replace(" ", "")
size = self.normalize_size(size_str)
# Monthly price is in <strong>$XX.XX\n/ month</strong>
monthly_elem = modal.select_one(".text-center.small strong")
price = None
if monthly_elem:
price_m = re.search(r"\$[\d,.]+", monthly_elem.get_text())
if price_m:
price = self.normalize_price(price_m.group())
# Description from title prefix (before the parenthesis)
desc = title.split("(")[0].strip() if "(" in title else title
result.units.append(UnitResult(size=size, price=price, description=desc))
if not result.units:
result.warnings.append("No units found")
return result
Scrape Runs (3)
Run #1020 Details
- Status
- exported
- Parser Used
- Facility001972Parser
- Platform Detected
- storageunitsoftware
- Units Found
- 0
- Stage Reached
- exported
- Timestamp
- 2026-03-23 02:38:50.808436
Timing
| Stage | Duration |
|---|---|
| Fetch | 2644ms |
| Detect | 13ms |
| Parse | 5ms |
| Export | 3ms |
Snapshot: 001972_20260323T023853Z.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:39:30.976079
No units extracted for 001972
Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 001972
parse
_WarningAsException
scraper
no_units_extracted
warning
Run #N/A | 2026-03-27 13:39:29.440575
No units extracted for 001972
Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 001972
parse
_WarningAsException
scraper
no_units_extracted
warning
Run #N/A | 2026-03-23 02:38:53.487831
No units extracted for 001972
Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 001972