Facility: 102640

Arborstone 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
102640
Name
Arborstone Storage
URL
https://www.arborstonestorage.com/self-storage/oklahoma/storage-units-verden/
Address
101 4th St, Verden, OK 73092, USA, Verden, Oklahoma 73092
Platform
custom_facility_102640
Parser File
src/parsers/custom/facility_102640_parser.py
Last Scraped
2026-03-27 13:42:34.222731
Created
2026-03-23 02:35:08.816820
Updated
2026-03-27 13:42:34.250947
Parser & Healing Diagnosis working
Parser Status
✓ Working
Status Reason
N/A
Last Healing Attempt
Not attempted
Parser Source (src/parsers/custom/facility_102640_parser.py)
"""Parser for Arborstone Storage - Verden."""

from __future__ import annotations

import re

from bs4 import BeautifulSoup

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


class Facility102640Parser(BaseParser):
    """Extract storage units from Arborstone Storage Verden."""

    platform = "custom_facility_102640"

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

        # Unit sizes are in links like <a>5x10</a> with href to /5x10-storage/
        size_links = soup.find_all("a", string=re.compile(r"\d+\s*[×xX]\s*\d+"))
        seen = set()

        for link in size_links:
            text = link.get_text(strip=True)
            # Normalize the multiplication sign
            size_match = re.search(r"(\d+)\s*[×xX]\s*(\d+)", text)
            if not size_match:
                continue

            size_key = f"{size_match.group(1)}x{size_match.group(2)}"
            if size_key in seen:
                continue
            seen.add(size_key)

            unit = UnitResult()
            unit.size = f"{size_match.group(1)} x {size_match.group(2)}"
            w, ln, sq = self.normalize_size(unit.size)
            if w is not None:
                unit.metadata = {"width": w, "length": ln, "sqft": sq}

            href = link.get("href", "")
            if href:
                unit.url = href

            unit.description = f"Storage Unit {unit.size}"
            result.units.append(unit)

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

        return result

Scrape Runs (3)

Run #1599 Details

Status
exported
Parser Used
Facility102640Parser
Platform Detected
table_layout
Units Found
6
Stage Reached
exported
Timestamp
2026-03-27 13:42:30.448403
Timing
Stage Duration
Fetch3663ms
Detect37ms
Parse17ms
Export19ms

Snapshot: 102640_20260327T134234Z.html · Show Snapshot · Open in New Tab

Parsed Units (6)

13 x 30

No price

5 x 10

No price

10 x 10

No price

10 x 15

No price

10 x 20

No price

10 x 30

No price

← Back to dashboard