Facility: 017966

Placid Lakes 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
017966
Name
Placid Lakes Storage
URL
http://www.placidlakesstorage.com/
Address
224 Atherton Ave NW, Lake Placid, FL 33852, USA, Lake Placid, Florida 33852
Platform
custom_facility_017966
Parser File
src/parsers/custom/facility_017966_parser.py
Last Scraped
2026-03-27 13:43:55.189013
Created
2026-03-20 23:23:10.660695
Updated
2026-03-27 13:43:55.216851
Parser & Healing Diagnosis working
Parser Status
✓ Working
Status Reason
N/A
Last Healing Attempt
Not attempted
Parser Source (src/parsers/custom/facility_017966_parser.py)
"""Parser for Placid Lakes Storage (Lake Placid, FL)."""

from __future__ import annotations

import re

from bs4 import BeautifulSoup

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


class Facility017966Parser(BaseParser):
    """Extract storage units from Placid Lakes Storage (GoDaddy Websites Plus)."""

    platform = "custom_facility_017966"

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

        # Units are described in a <ul> list item:
        # "40 Current Units (5x10, 10x10, 20x20, and 42x28)"
        # Extract sizes from comma-separated list in parentheses
        size_pattern = re.compile(r"\b(\d+)\s*[xX]\s*(\d+)\b")

        seen_sizes: set[str] = set()

        # Look for list items containing unit count and size info
        for li in soup.find_all("li"):
            text = li.get_text()
            # Only consider list items that mention "units" (not "coming soon" separate)
            if "unit" not in text.lower() and not size_pattern.search(text):
                continue

            matches = size_pattern.findall(text)
            for w_str, l_str in matches:
                size_text = f"{w_str}x{l_str}"
                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 #1634 Details

Status
exported
Parser Used
Facility017966Parser
Platform Detected
table_layout
Units Found
5
Stage Reached
exported
Timestamp
2026-03-27 13:43:52.851493
Timing
Stage Duration
Fetch2172ms
Detect90ms
Parse10ms
Export18ms

Snapshot: 017966_20260327T134355Z.html · Show Snapshot · Open in New Tab

Parsed Units (5)

5x10

No price

10x10

No price

20x20

No price

42x28

No price

14x30

No price

← Back to dashboard