Facility: 109021
Premier Self Storage-Sauk Rapids, MN
- Facility ID
- 109021
- Name
- Premier Self Storage-Sauk Rapids, MN
- URL
- https://www.saukrapidsstorage.com/3110-10th-st-ne-sauk-rapids-mn-56379
- Address
- 3110 10th St NE, Sauk Rapids, MN 56379, USA, Sauk Rapids, Minnesota 56379
- Platform
- custom_facility_109021
- Parser File
- src/parsers/custom/facility_109021_parser.py
- Last Scraped
- 2026-03-27 14:08:06.975048
- Created
- 2026-03-14 16:21:53.706708
- Updated
- 2026-03-27 14:08:07.002409
- Parser Status
- ✓ Working
- Status Reason
- N/A
- Last Healing Attempt
- Not attempted
Parser Source (src/parsers/custom/facility_109021_parser.py)
"""Parser for Premier Self Storage-Sauk Rapids, MN."""
from __future__ import annotations
import re
from bs4 import BeautifulSoup
from src.parsers.base import BaseParser, ParseResult, UnitResult
class Facility109021Parser(BaseParser):
"""Extract storage units from Premier Self Storage-Sauk Rapids, MN using table layout."""
platform = "custom_facility_109021"
def parse(self, html: str, url: str = "") -> ParseResult:
soup = BeautifulSoup(html, "lxml")
result = ParseResult(platform=self.platform, parser_name=self.__class__.__name__)
table = soup.select_one("table._2QREMkZenGaFOjxHn8CDhU.table")
if not table:
# Fallback: find table with most price-containing rows
tables = soup.find_all("table")
best, best_count = None, 0
for t in tables:
c = sum(1 for r in t.find_all("tr") if "$" in r.get_text())
if c > best_count:
best_count = c
best = t
table = best
if not table:
result.warnings.append("No pricing table found")
return result
rows = table.find_all("tr")
for row in rows:
cells = row.find_all(["td", "th"])
if len(cells) < 2:
continue
row_text = row.get_text()
# Skip header rows
if not re.search(r"\$\d+", row_text) and not re.search(r"\d+\s*[\'\'xX]\s*\d+", row_text):
continue
unit = UnitResult()
# Extract size
size_text = cells[1].get_text(strip=True)
if size_text:
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}
# Extract price
price_text = cells[2].get_text(strip=True)
if price_text:
# Try to find the price in this cell
price_match = re.search(r"\$(\d[\d,.]*)", price_text)
if price_match:
unit.price = self.normalize_price(price_match.group(1))
unit.description = row.get_text(separator=" ", strip=True)
if unit.size or unit.price:
result.units.append(unit)
if not result.units:
result.warnings.append("No units found in table")
return result
Scrape Runs (5)
-
exported Run #22052026-03-27 14:08:02.776461 | 3 units | Facility109021Parser | View Data →
-
exported Run #22042026-03-27 14:08:01.507783 | 3 units | Facility109021Parser | View Data →
-
exported Run #13682026-03-23 03:10:27.846285 | 3 units | Facility109021Parser | View Data →
-
exported Run #8752026-03-21 19:02:53.782814 | 3 units | Facility109021Parser | View Data →
-
exported Run #4242026-03-14 16:42:25.793811 | 3 units | Facility109021Parser | View Data →
Run #424 Details
- Status
- exported
- Parser Used
- Facility109021Parser
- Platform Detected
- storageunitsoftware
- Units Found
- 3
- Stage Reached
- exported
- Timestamp
- 2026-03-14 16:42:25.793811
Timing
| Stage | Duration |
|---|---|
| Fetch | 5657ms |
| Detect | 30ms |
| Parse | 11ms |
| Export | 13ms |
Snapshot: 109021_20260314T164231Z.html · Show Snapshot · Open in New Tab
Parsed Units (3)
Storage
$75.00/mo
Storage
$185.00/mo
Storage
$180.00/mo