Facility: 110433

StorQuest 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
110433
Name
StorQuest Self Storage
URL
https://www.storquest.com/self-storage/ca/milpitas/9166/
Address
985 Montague Expy, Milpitas, CA 95035, USA, Milpitas, California 95035
Platform
custom_facility_110433
Parser File
src/parsers/custom/facility_110433_parser.py
Last Scraped
2026-03-27 13:47:45.272004
Created
2026-03-20 23:23:10.660695
Updated
2026-03-27 13:47:45.300033
Parser & Healing Diagnosis working
Parser Status
✓ Working
Status Reason
N/A
Last Healing Attempt
Not attempted
Parser Source (src/parsers/custom/facility_110433_parser.py)
"""Parser for StorQuest Self Storage (Milpitas, CA)."""

from __future__ import annotations

import re

from bs4 import BeautifulSoup

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


class Facility110433Parser(BaseParser):
    """Extract storage units from StorQuest using embedded Next.js state data."""

    platform = "custom_facility_110433"

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

        # StorQuest embeds unit data in escaped JSON within __next_f.push calls
        # Unit names follow the pattern: "5x10x0 - $58.00 - ..."
        unit_names = re.findall(
            r'\\"name\\":\\"(\d+x\d+x\d+ - \$[\d.]+[^\\]*)\\"',
            html,
        )

        # Extract (width, length, price) and deduplicate by size taking lowest price
        seen: dict[tuple[int, int], float] = {}
        for name in unit_names:
            m = re.match(r"(\d+)x(\d+)x\d+ - \$(\d+\.?\d*)", name)
            if not m:
                continue
            width, length, price = int(m.group(1)), int(m.group(2)), float(m.group(3))
            key = (min(width, length), max(width, length))
            if key not in seen or price < seen[key]:
                seen[key] = price

        for (w, ln), price in sorted(seen.items()):
            unit = UnitResult()
            unit.size = f"{w}' x {ln}'"
            unit.price = price
            _, _, sq = self.normalize_size(unit.size)
            if sq is not None:
                unit.metadata = {"width": w, "length": ln, "sqft": sq}
            result.units.append(unit)

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

        return result

Scrape Runs (4)

Run #1719 Details

Status
exported
Parser Used
Facility110433Parser
Platform Detected
ccstorage
Units Found
8
Stage Reached
exported
Timestamp
2026-03-27 13:47:39.861641
Timing
Stage Duration
Fetch4624ms
Detect73ms
Parse1ms
Export22ms

Snapshot: 110433_20260327T134744Z.html · Show Snapshot · Open in New Tab

Parsed Units (8)

5' x 5'

$32.00/mo

5' x 10'

$59.00/mo

8' x 10'

$93.00/mo

10' x 10'

$109.00/mo

10' x 20'

$338.00/mo

10' x 25'

$368.00/mo

10' x 30'

$480.00/mo

12' x 30'

$544.00/mo

← Back to dashboard