Facility: 062023

Dicks Self 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
062023
Name
Dicks Self Storage
URL
https://www.dicksselfstoragenh.com/
Address
150 Rte 3 South Twin Mt, Twin Mountain, NH 03595, USA, Twin Mountain, New Hampshire 03595
Platform
custom_facility_062023
Parser File
src/parsers/custom/facility_062023_parser.py
Last Scraped
2026-03-27 14:02:38.767656
Created
2026-03-14 16:21:53.706708
Updated
2026-03-27 14:02:38.794918
Parser & Healing Diagnosis working
Parser Status
✓ Working
Status Reason
N/A
Last Healing Attempt
Not attempted
Parser Source (src/parsers/custom/facility_062023_parser.py)
"""Parser for Dicks Self Storage."""

from __future__ import annotations

import re

from bs4 import BeautifulSoup

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


class Facility062023Parser(BaseParser):
    """Extract storage units from Dicks Self Storage."""

    platform = "custom_facility_062023"

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

        containers = soup.select("div.list-group.list-group-flush")

        for container in containers:
            unit = UnitResult()
            text = container.get_text(separator=" ", strip=True)

            # Extract size
            size_el = container.select_one("span")
            size_text = size_el.get_text(strip=True) if size_el else None
            if not size_text:
                # Fallback: regex on full text
                m = re.search(r"(\d+\s*[\'\'\u2032]?\s*[xX\u00d7]\s*\d+\s*[\'\'\u2032]?)", text)
                if m:
                    size_text = m.group(1)
            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_el = container.select_one("span")
            price_text = price_el.get_text(strip=True) if price_el else None
            if not price_text:
                # Fallback: regex on full text
                pm = re.search(r"\$(\d[\d,.]*)", text)
                if pm:
                    price_text = pm.group(0)
            if price_text:
                pm = re.search(r"\$(\d[\d,.]*)", price_text)
                if pm:
                    unit.price = self.normalize_price(pm.group(1))

            unit.description = text[:200]

            if unit.size or unit.price:
                result.units.append(unit)

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

        return result

Scrape Runs (5)

Run #364 Details

Status
exported
Parser Used
Facility062023Parser
Platform Detected
table_layout
Units Found
3
Stage Reached
exported
Timestamp
2026-03-14 16:36:31.322078
Timing
Stage Duration
Fetch2962ms
Detect16ms
Parse10ms
Export14ms

Snapshot: 062023_20260314T163634Z.html · Show Snapshot · Open in New Tab

Parsed Units (3)

5x5

No price

5x5

No price

5x5

No price

← Back to dashboard