Facility: 110433
StorQuest Self Storage
- 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 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)
-
exported Run #17192026-03-27 13:47:39.861641 | 8 units | Facility110433Parser | View Data →
-
exported Run #17182026-03-27 13:47:39.852644 | 8 units | Facility110433Parser | View Data →
-
exported Run #11222026-03-23 02:49:26.211091 | 7 units | Facility110433Parser | View Data →
-
exported Run #6272026-03-21 18:39:06.403807 | 7 units | Facility110433Parser | View Data →
Run #1122 Details
- Status
- exported
- Parser Used
- Facility110433Parser
- Platform Detected
- ccstorage
- Units Found
- 7
- Stage Reached
- exported
- Timestamp
- 2026-03-23 02:49:26.211091
Timing
| Stage | Duration |
|---|---|
| Fetch | 6205ms |
| Detect | 134ms |
| Parse | 2ms |
| Export | 5ms |
Snapshot: 110433_20260323T024932Z.html · Show Snapshot · Open in New Tab
Parsed Units (7)
5' x 5'
$32.00/mo
5' x 10'
$54.00/mo
8' x 10'
$89.00/mo
10' x 10'
$99.00/mo
10' x 20'
$311.00/mo
10' x 30'
$431.00/mo
12' x 30'
$488.00/mo