Facility: 021630

Mosquito Creek Storage

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
021630
Name
Mosquito Creek Storage
URL
https://www.mosquitocreekstorage.com/
Address
2750 Warren Meadville Rd, Cortland, OH 44410, USA, Cortland, Ohio 44410
Platform
custom_facility_021630
Parser File
src/parsers/custom/facility_021630_parser.py
Last Scraped
2026-03-27 13:44:10.500706
Created
2026-03-20 23:23:10.660695
Updated
2026-03-27 13:44:10.527170
Parser & Healing Diagnosis working
Parser Status
✓ Working
Status Reason
N/A
Last Healing Attempt
Not attempted
Parser Source (src/parsers/custom/facility_021630_parser.py)
"""Parser for Mosquito Creek Storage (Warren, OH)."""

from __future__ import annotations

import re

from bs4 import BeautifulSoup

from src.parsers.base import BaseParser, ParseResult, UnitResult


class Facility021630Parser(BaseParser):
    """Extract storage units from Mosquito Creek Storage (Duda CMS site)."""

    platform = "custom_facility_021630"

    def parse(self, html: str, url: str = "") -> ParseResult:
        soup = BeautifulSoup(html, "lxml")
        result = ParseResult(platform=self.platform, parser_name=self.__class__.__name__)

        # Sizes are embedded in strong elements describing unit categories,
        # e.g. "5x5 and 5x10 self storage units in Trumbull County, Ohio"
        size_pattern = re.compile(r"\b(\d+x\d+)\b", re.IGNORECASE)

        seen_sizes: set[str] = set()

        # Find strong elements that contain size references
        for strong in soup.find_all("strong"):
            text = strong.get_text(strip=True)
            if "storage" not in text.lower() and not size_pattern.search(text):
                continue

            matches = size_pattern.findall(text)
            for size_text in matches:
                if size_text in seen_sizes:
                    continue
                seen_sizes.add(size_text)

                unit = UnitResult()
                unit.size = size_text
                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 on page")

        return result

Scrape Runs (4)

Run #1643 Details

Status
exported
Parser Used
Facility021630Parser
Platform Detected
table_layout
Units Found
5
Stage Reached
exported
Timestamp
2026-03-27 13:44:07.319826
Timing
Stage Duration
Fetch3086ms
Detect26ms
Parse14ms
Export18ms

Snapshot: 021630_20260327T134410Z.html · Show Snapshot · Open in New Tab

Parsed Units (5)

5x5

No price

5x10

No price

10x10

No price

10x20

No price

10x30

No price

← Back to dashboard