Facility: 028231
Woodland Mini Storage
- Facility ID
- 028231
- Name
- Woodland Mini Storage
- URL
- http://www.woodlandministorage.com/
- Address
- 3931 E Calvary Rd, Duluth, MN 55803, USA, Duluth, Minnesota 55803
- Platform
- custom_facility_028231
- Parser File
- src/parsers/custom/facility_028231_parser.py
- Last Scraped
- 2026-03-27 13:44:37.555195
- Created
- 2026-03-20 23:23:10.660695
- Updated
- 2026-03-27 13:44:37.582059
- Parser Status
- ✓ Working
- Status Reason
- N/A
- Last Healing Attempt
- Not attempted
Parser Source (src/parsers/custom/facility_028231_parser.py)
"""Parser for Woodland Mini Storage (Duluth, MN)."""
from __future__ import annotations
import re
from bs4 import BeautifulSoup
from src.parsers.base import BaseParser, ParseResult, UnitResult
class Facility028231Parser(BaseParser):
"""Extract storage units from Woodland Mini Storage."""
platform = "custom_facility_028231"
def parse(self, html: str, url: str = "") -> ParseResult:
soup = BeautifulSoup(html, "lxml")
result = ParseResult(platform=self.platform, parser_name=self.__class__.__name__)
# Units are listed as list-group-items, each containing a nested table
# The size is in a bold span (unittrac.com format)
unit_items = soup.find_all("div", class_="list-group-item")
seen = set()
for item in unit_items:
size_span = item.find("span", style=re.compile(r"font-weight:\s*bold"))
if not size_span:
continue
size_text = size_span.get_text(strip=True)
if not re.match(r"^\d+[xX]\d+", size_text):
continue
if size_text in seen:
continue
seen.add(size_text)
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}
badge = item.find("div", class_=re.compile(r"badge"))
if badge:
unit.scarcity = badge.get_text(strip=True)
result.units.append(unit)
if not result.units:
result.warnings.append("No units found on page")
return result
Scrape Runs (4)
-
exported Run #16552026-03-27 13:44:34.882981 | 1 units | Facility028231Parser | View Data →
-
exported Run #16542026-03-27 13:44:32.848675 | 1 units | Facility028231Parser | View Data →
-
exported Run #10892026-03-23 02:44:57.406527 | 1 units | Facility028231Parser | View Data →
-
exported Run #5942026-03-21 18:35:15.571781 | 1 units | Facility028231Parser | View Data →
Run #1089 Details
- Status
- exported
- Parser Used
- Facility028231Parser
- Platform Detected
- table_layout
- Units Found
- 1
- Stage Reached
- exported
- Timestamp
- 2026-03-23 02:44:57.406527
Timing
| Stage | Duration |
|---|---|
| Fetch | 2807ms |
| Detect | 11ms |
| Parse | 5ms |
| Export | 6ms |
Snapshot: 028231_20260323T024500Z.html · Show Snapshot · Open in New Tab
Parsed Units (1)
10x20
No price
0 Available