Facility: 109907
Storage Red (Mount Vernon-North)
- Facility ID
- 109907
- Name
- Storage Red (Mount Vernon-North)
- URL
- https://www.storagered.com/storage-units/ohio/mount-vernon/storagered-mount-vernon-2-3501727/
- Address
- 13215 Wooster Rd, Mt Vernon, OH 43050, USA, Mt Vernon, Ohio 43050
- Platform
- custom_facility_109907
- Parser File
- src/parsers/custom/facility_109907_parser.py
- Last Scraped
- 2026-03-27 13:43:35.850998
- Created
- 2026-03-20 23:23:10.660695
- Updated
- 2026-03-27 13:43:35.893060
- Parser Status
- ✓ Working
- Status Reason
- N/A
- Last Healing Attempt
- Not attempted
Parser Source (src/parsers/custom/facility_109907_parser.py)
"""Parser for Storage Red (Mount Vernon-North)."""
from __future__ import annotations
import json
from bs4 import BeautifulSoup
from src.parsers.base import BaseParser, ParseResult, UnitResult
class Facility109907Parser(BaseParser):
"""Extract storage units from StorageRed using JSON-LD offer catalog."""
platform = "custom_facility_109907"
def parse(self, html: str, url: str = "") -> ParseResult:
soup = BeautifulSoup(html, "lxml")
result = ParseResult(platform=self.platform, parser_name=self.__class__.__name__)
# Extract units from JSON-LD SelfStorage schema with hasOfferCatalog
scripts = soup.find_all("script", type="application/ld+json")
for script in scripts:
try:
data = json.loads(script.string or "")
if not isinstance(data, dict):
continue
catalog = data.get("hasOfferCatalog", {})
if not catalog:
continue
items = catalog.get("itemListElement", [])
seen_sizes = set()
for item in items:
if item.get("@type") != "Product":
continue
size_str = item.get("size", "").strip()
if not size_str or size_str in seen_sizes:
continue
seen_sizes.add(size_str)
offers = item.get("offers", {})
low_price = offers.get("lowPrice")
high_price = offers.get("highPrice")
price_val = low_price if low_price is not None else high_price
unit = UnitResult()
unit.size = size_str
w, ln, sq = self.normalize_size(size_str)
if w is not None:
unit.metadata = {"width": w, "length": ln, "sqft": sq}
if price_val is not None:
unit.price = float(price_val)
if unit.size or unit.price:
result.units.append(unit)
except (json.JSONDecodeError, AttributeError, TypeError):
continue
if not result.units:
result.warnings.append("No units found on page")
return result
Scrape Runs (4)
-
exported Run #16232026-03-27 13:43:33.665269 | 11 units | Facility109907Parser | View Data →
-
exported Run #16222026-03-27 13:43:32.480023 | 11 units | Facility109907Parser | View Data →
-
exported Run #10732026-03-23 02:43:49.520195 | 11 units | Facility109907Parser | View Data →
-
exported Run #5782026-03-21 18:34:07.184602 | 11 units | Facility109907Parser | View Data →
Run #1073 Details
- Status
- exported
- Parser Used
- Facility109907Parser
- Platform Detected
- table_layout
- Units Found
- 11
- Stage Reached
- exported
- Timestamp
- 2026-03-23 02:43:49.520195
Timing
| Stage | Duration |
|---|---|
| Fetch | 2284ms |
| Detect | 103ms |
| Parse | 54ms |
| Export | 5ms |
Snapshot: 109907_20260323T024351Z.html · Show Snapshot · Open in New Tab
Parsed Units (11)
5' x 5'
$75.00/mo
10' x 5'
$80.00/mo
10' x 10'
$121.00/mo
10' x 15'
$45.00/mo
10' x 20'
$155.00/mo
20' x 10'
$220.00/mo
10' x 30'
$195.00/mo
12' x 25'
$55.00/mo
12' x 35'
$60.00/mo
15' x 30'
$275.00/mo
12' x 40'
$70.00/mo