Facility: 026153

U-STOR Self Storage Pinellas Park, FL

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
026153
Name
U-STOR Self Storage Pinellas Park, FL
URL
https://u-stor.com/self-storage/pinellas-park-fl-33781-6201/
Address
3450 62nd Ave N, Pinellas Park, FL 33781, USA, Pinellas Park, Florida 33781
Platform
custom_facility_026153
Parser File
src/parsers/custom/facility_026153_parser.py
Last Scraped
2026-03-27 13:40:57.054649
Created
2026-03-23 02:35:08.816820
Updated
2026-03-27 13:40:57.082444
Parser & Healing Diagnosis working
Parser Status
✓ Working
Status Reason
N/A
Last Healing Attempt
Not attempted
Parser Source (src/parsers/custom/facility_026153_parser.py)
"""Parser for U-STOR Self Storage Pinellas Park (WordPress/Avada with DRTS fields)."""

from __future__ import annotations

import re

from bs4 import BeautifulSoup

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


class Facility026153Parser(BaseParser):
    """Extract storage units from U-STOR Self Storage Pinellas Park.

    This site uses WordPress with Avada theme and DRTS (Directory) 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_026153"

    _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 #1560 Details

Status
exported
Parser Used
Facility026153Parser
Platform Detected
storageunitsoftware
Units Found
6
Stage Reached
exported
Timestamp
2026-03-27 13:40:54.202508
Timing
Stage Duration
Fetch2663ms
Detect56ms
Parse25ms
Export20ms

Snapshot: 026153_20260327T134056Z.html · Show Snapshot · Open in New Tab

Parsed Units (6)

10 x 25

No price

10 x 30

No price

5 x 10

No price

10 x 10

No price

10 x 15

No price

10 x 20

No price

← Back to dashboard