Facility: 109907

Storage Red (Mount Vernon-North)

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
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 & Healing Diagnosis working
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)

Run #578 Details

Status
exported
Parser Used
Facility109907Parser
Platform Detected
table_layout
Units Found
11
Stage Reached
exported
Timestamp
2026-03-21 18:34:07.184602
Timing
Stage Duration
Fetch2425ms
Detect143ms
Parse53ms
Export9ms

Snapshot: 109907_20260321T183409Z.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

← Back to dashboard