Facility: 111164
SmartStop Self Storage
- Facility ID
- 111164
- Name
- SmartStop Self Storage
- URL
- https://smartstopselfstorage.com/en/find-storage/tx/houston/2412-w-holcombe-blvd
- Address
- 2412 W Holcombe Blvd, Houston, TX 77030
- Platform
- custom_facility_111164
- Parser File
- src/parsers/custom/facility_111164_parser.py
- Last Scraped
- 2026-03-27 13:44:53.510436
- Created
- 2026-03-20 23:32:48.933261
- Updated
- 2026-03-27 13:44:53.539807
- Parser Status
- ✓ Working
- Status Reason
- N/A
- Last Healing Attempt
- Not attempted
Parser Source (src/parsers/custom/facility_111164_parser.py)
"""Parser for SmartStop Self Storage facility 111164."""
from __future__ import annotations
import re
from bs4 import BeautifulSoup
from src.parsers.base import BaseParser, ParseResult, UnitResult
class Facility111164Parser(BaseParser):
"""Extract storage units from SmartStop Self Storage pages.
Units are rendered in div.unit-card elements. Each card contains:
- div.unit-card__size__dimension: dimension text (e.g. "10' x 20'")
- div.unit-card__cost__web__value: promotional/web rate
- div.unit-card__cost__store__value (inside .cross-out): in-store rate
- ul.unit-card__features__list li: feature list
- div.unit-card__cost__badges__promo span.badge: promo badge text
"""
platform = "custom_facility_111164"
def parse(self, html: str, url: str = "") -> ParseResult:
soup = BeautifulSoup(html, "lxml")
result = ParseResult(platform=self.platform, parser_name=self.__class__.__name__)
seen: set[tuple[str, str]] = set()
for card in soup.find_all(class_="unit-card"):
# Skip nested unit-card sub-elements
if not card.get("data-js-unittypeid"):
continue
# --- size ---
dim_el = card.find(class_="unit-card__size__dimension")
if not dim_el:
continue
size_text = dim_el.get_text(strip=True)
# --- web rate (promotional/online rate) ---
web_val_el = card.find(class_="unit-card__cost__web__value")
if not web_val_el:
continue
# Strip the <sub>/mo</sub> tag
for sub in web_val_el.find_all("sub"):
sub.decompose()
price_text = web_val_el.get_text(strip=True)
price = self.normalize_price(price_text)
if price is None:
continue
key = (size_text, price_text)
if key in seen:
continue
seen.add(key)
# --- in-store rate (crossed-out) ---
store_el = card.find(class_="unit-card__cost__store__value")
sale_price: float | None = None
if store_el:
sale_price = self.normalize_price(store_el.get_text(strip=True))
# --- promotion badge ---
promo_el = card.find(class_="unit-card__cost__badges__promo")
promo: str | None = None
if promo_el:
badge = promo_el.find(class_="badge")
if badge:
# Get direct text only (avoid nested tooltip text)
badge_text = badge.find(string=True, recursive=False)
if badge_text:
promo = badge_text.strip()
# --- features ---
feature_els = card.find_all("li")
desc = ", ".join(li.get_text(strip=True) for li in feature_els if li.get_text(strip=True)) or None
unit = UnitResult(
size=size_text,
price=price,
sale_price=sale_price,
promotion=promo,
description=desc,
)
w, ln, sq = self.normalize_size(size_text)
if w 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 in SmartStop unit-card elements")
return result
Scrape Runs (4)
-
exported Run #16632026-03-27 13:44:49.457889 | 13 units | Facility111164Parser | View Data →
-
exported Run #16622026-03-27 13:44:47.476718 | 13 units | Facility111164Parser | View Data →
-
exported Run #10932026-03-23 02:45:13.781490 | 13 units | Facility111164Parser | View Data →
-
exported Run #5992026-03-21 18:35:33.033820 | 13 units | Facility111164Parser | View Data →
Run #1663 Details
- Status
- exported
- Parser Used
- Facility111164Parser
- Platform Detected
- table_layout
- Units Found
- 13
- Stage Reached
- exported
- Timestamp
- 2026-03-27 13:44:49.457889
Timing
| Stage | Duration |
|---|---|
| Fetch | 3828ms |
| Detect | 134ms |
| Parse | 36ms |
| Export | 19ms |
Snapshot: 111164_20260327T134453Z.html · Show Snapshot · Open in New Tab
Parsed Units (13)
10' x 20'
$355.00/mo
Street: $178.00
5' x 5'
$43.00/mo
Street: $22.00
2' x 2'
$52.00/mo
Street: $26.00
5' x 5'
$57.00/mo
Street: $28.00
5' x 7.5'
$67.00/mo
Street: $34.00
5' x 10'
$79.00/mo
Street: $40.00
5' x 10'
$113.00/mo
Street: $56.00
7.5' x 10'
$148.00/mo
Street: $74.00
10' x 10'
$200.00/mo
Street: $100.00
10' x 15'
$269.00/mo
Street: $134.00
10' x 25'
$425.00/mo
Street: $275.00
10' x 30'
$504.00/mo
Street: $354.00
15' x 30'
$751.00/mo
Street: $601.00