Facility: 028237

CAR-GO Self Storage Columbus, OH

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
028237
Name
CAR-GO Self Storage Columbus, OH
URL
https://u-stor.com/self-storage/columbus-oh-43224-1863/
Address
3935 Westerville Rd, Columbus, OH 43224, USA, Columbus, Ohio 43224
Platform
custom_facility_028237
Parser File
src/parsers/custom/facility_028237_parser.py
Last Scraped
2026-03-27 13:41:06.841266
Created
2026-03-23 02:35:08.816820
Updated
2026-03-27 13:41:06.868980
Parser & Healing Diagnosis working
Parser Status
✓ Working
Status Reason
N/A
Last Healing Attempt
Not attempted
Parser Source (src/parsers/custom/facility_028237_parser.py)
"""Parser for CAR-GO Self Storage Columbus (WordPress/Avada with DRTS fields)."""

from __future__ import annotations

import re

from bs4 import BeautifulSoup

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


class Facility028237Parser(BaseParser):
    """Extract storage units from CAR-GO Self Storage Columbus.

    Same platform as U-STOR (WordPress + Avada + DRTS plugin).
    Unit sizes are in structured div elements with class patterns like
    'field_storage_size'. Prices are not listed per-unit (call for pricing).
    """

    platform = "custom_facility_028237"

    _SIZE_CLASS_RE = re.compile(r"field_storage_size")

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

        # Extract sizes from DRTS display elements
        size_divs = soup.find_all(class_=self._SIZE_CLASS_RE)
        seen_sizes: set[str] = set()

        for div in size_divs:
            size_text = div.get_text(strip=True)
            if not size_text:
                continue

            w, ln, sqft = self.normalize_size(size_text)
            if w is None or w < 3 or ln < 3:
                continue

            size_key = f"{int(w)}x{int(ln)}"
            if size_key in seen_sizes:
                continue
            seen_sizes.add(size_key)

            # Try to find description from sibling elements
            description = ""
            parent = div.parent
            if parent:
                desc_el = parent.find(class_=re.compile(r"description"))
                if desc_el:
                    description = desc_el.get_text(strip=True)[:200]

            unit = UnitResult()
            unit.size = size_text.strip()
            unit.metadata = {"width": w, "length": ln, "sqft": sqft}
            if description:
                unit.description = description
            result.units.append(unit)

        if not result.units:
            result.warnings.append("No units found via DRTS size fields")

        return result

Scrape Runs (3)

Run #1564 Details

Status
exported
Parser Used
Facility028237Parser
Platform Detected
storageunitsoftware
Units Found
6
Stage Reached
exported
Timestamp
2026-03-27 13:41:02.788959
Timing
Stage Duration
Fetch3477ms
Detect54ms
Parse26ms
Export20ms

Snapshot: 028237_20260327T134106Z.html · Show Snapshot · Open in New Tab

Parsed Units (6)

5 x 10

No price

10 x 10

No price

10 x 15

No price

10 x 20

No price

10 x 25

No price

10 x 30

No price

← Back to dashboard