Facility: 035190
IStorage
- Facility ID
- 035190
- Name
- IStorage
- URL
- https://www.nsastorage.com/storage/texas/storage-units-houston/5503-Almeda-Rd-496
- Address
- 5503 Almeda Rd, Houston, TX 77004
- Platform
- custom_facility_035190
- Parser File
- src/parsers/custom/facility_035190_parser.py
- Last Scraped
- 2026-03-27 13:41:17.991410
- Created
- 2026-03-23 02:35:08.816820
- Updated
- 2026-03-27 13:41:18.022870
- Parser Status
- ✓ Working
- Status Reason
- N/A
- Last Healing Attempt
- Not attempted
Parser Source (src/parsers/custom/facility_035190_parser.py)
"""Parser for iStorage / NSA Storage facility 035190."""
from __future__ import annotations
import re
from bs4 import BeautifulSoup
from src.parsers.base import BaseParser, ParseResult, UnitResult
class Facility035190Parser(BaseParser):
"""Extract storage units from NSA Storage (iStorage) facility pages.
Units are in div.unit-select-item cards with dimension headings
and prices in div.part_item_price. Same platform layout as 017988.
"""
platform = "custom_facility_035190"
_SIZE_RE = re.compile(r"(\d+\.?\d*)\s*[xX×]\s*(\d+\.?\d*)")
def parse(self, html: str, url: str = "") -> ParseResult:
soup = BeautifulSoup(html, "lxml")
result = ParseResult(platform=self.platform, parser_name=self.__class__.__name__)
cards = soup.find_all(class_="unit-select-item")
seen: set[tuple[str, str]] = set()
for card in cards:
heading = card.find(class_="unit-select-item-detail-heading")
if not heading:
continue
size_text = heading.get_text(strip=True)
if not self._SIZE_RE.search(size_text):
continue
price_div = card.find(class_="part_item_price")
if not price_div:
continue
for sub in price_div.find_all("sub"):
sub.decompose()
price_text = price_div.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_price: float | None = None
old_price_div = card.find(class_="part_item_old_price")
if old_price_div:
stroke = old_price_div.find(class_="stroke")
if stroke:
in_store_price = self.normalize_price(stroke.get_text(strip=True))
promo_spans = card.find_all(class_="part_badge")
promo = "; ".join(
s.get_text(strip=True) for s in promo_spans if s.get_text(strip=True)
) or None
feature_items = card.find_all("li")
desc = ", ".join(li.get_text(strip=True) for li in feature_items if li.get_text(strip=True))
unit = UnitResult(
size=size_text,
price=price,
sale_price=in_store_price,
promotion=promo,
description=desc or None,
)
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 NSA Storage unit-select-item cards")
return result
Scrape Runs (3)
Run #1045 Details
- Status
- exported
- Parser Used
- Facility035190Parser
- Platform Detected
- ccstorage
- Units Found
- 21
- Stage Reached
- exported
- Timestamp
- 2026-03-23 02:41:00.230860
Timing
| Stage | Duration |
|---|---|
| Fetch | 6065ms |
| Detect | 85ms |
| Parse | 84ms |
| Export | 6ms |
Snapshot: 035190_20260323T024106Z.html · Show Snapshot · Open in New Tab
Parsed Units (21)
3 x 3
$90.00/mo
Street: $58.00
4 x 3
$108.00/mo
Street: $70.00
5 x 3
$119.00/mo
Street: $77.00
5 x 4.9
$47.00/mo
Street: $30.00
5 x 4.9
$44.00/mo
Street: $28.00
5 x 5
$45.00/mo
Street: $29.00
5 x 5
$164.00/mo
Street: $106.00
5 x 7.5
$120.00/mo
Street: $78.00
5 x 7.5
$96.00/mo
Street: $62.00
5 x 7.5
$234.00/mo
Street: $152.00
5 x 10
$122.00/mo
Street: $79.00
5 x 10
$97.00/mo
Street: $63.00
7.5 x 10
$467.00/mo
Street: $303.00
10 x 10
$191.00/mo
Street: $124.00
10 x 12.5
$302.00/mo
Street: $196.00
10 x 12.5
$239.00/mo
Street: $155.00
5 x 25
$239.00/mo
Street: $155.00
10 x 15
$362.00/mo
Street: $235.00
10 x 15
$287.00/mo
Street: $186.00
10 x 18
$414.00/mo
Street: $269.00
10 x 20
$414.00/mo
Street: $269.00