Facility: 020571

Kenwood Mini Storage

Stale Data Warning: This facility has not been successfully scraped in 26 days (threshold: 3 days). Data may be outdated.
Facility Information active
Facility ID
020571
Name
Kenwood Mini Storage
URL
http://www.austinmnstorageunits.com/
Address
25th Ave NW, Austin, MN 55912, USA, Austin, Minnesota 55912
Platform
custom_facility_020571
Parser File
src/parsers/custom/facility_020571_parser.py
Last Scraped
2026-03-27 13:44:03.164549
Created
2026-03-20 23:23:10.660695
Updated
2026-03-27 13:44:03.197020
Parser & Healing Diagnosis working
Parser Status
✓ Working
Status Reason
N/A
Last Healing Attempt
Not attempted
Parser Source (src/parsers/custom/facility_020571_parser.py)
"""Parser for Kenwood Mini Storage (Austin, MN)."""

from __future__ import annotations

import re

from bs4 import BeautifulSoup

from src.parsers.base import BaseParser, ParseResult, UnitResult


class Facility020571Parser(BaseParser):
    """Extract storage units from Kenwood Mini Storage."""

    platform = "custom_facility_020571"

    def parse(self, html: str, url: str = "") -> ParseResult:
        soup = BeautifulSoup(html, "lxml")
        result = ParseResult(platform=self.platform, parser_name=self.__class__.__name__)

        # Units are in section.box elements with h3 containing "N units\nWxH" format
        containers = soup.select("section.box")

        for container in containers:
            h3 = container.select_one("h3")
            if not h3:
                continue

            h3_text = h3.get_text(separator="\n", strip=True)

            # Extract size from h3 text (format: "20 units\n5' x 10'" or similar)
            size_match = re.search(r"(\d+'\s*x\s*\d+'|\d+\s*x\s*\d+)", h3_text, re.IGNORECASE)
            if not size_match:
                continue

            size_text = size_match.group(1).strip()

            # Extract unit count from h3 text
            count_match = re.search(r"(\d+)\s*units?", h3_text, re.IGNORECASE)
            count = int(count_match.group(1)) if count_match else None

            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}
                if count:
                    unit.metadata["count"] = count

            result.units.append(unit)

        if not result.units:
            result.warnings.append("No units found on page")

        return result

Scrape Runs (4)

Run #586 Details

Status
exported
Parser Used
Facility020571Parser
Platform Detected
unknown
Units Found
4
Stage Reached
exported
Timestamp
2026-03-21 18:34:37.286055
Timing
Stage Duration
Fetch2789ms
Detect6ms
Parse5ms
Export6ms

Snapshot: 020571_20260321T183440Z.html · Show Snapshot · Open in New Tab

Parsed Units (4)

5' x 10'

No price

10' x 10'

No price

10' x 20'

No price

10' x 30'

No price

← Back to dashboard