Facility: 000530

Ark Self-Storage Group Llc

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
000530
Name
Ark Self-Storage Group Llc
URL
https://www.arkselfstorage.net/location/USA/GA/Douglas/ark-douglas/
Address
1002 Madison Ave N, Douglas, GA 31533, USA, Douglas, Georgia 31533
Platform
custom_facility_000530
Parser File
src/parsers/custom/facility_000530_parser.py
Last Scraped
2026-03-27 13:51:52.787632
Created
2026-03-14 16:21:53.706708
Updated
2026-03-27 13:51:52.814621
Parser & Healing Diagnosis working
Parser Status
✓ Working
Status Reason
N/A
Last Healing Attempt
Not attempted
Parser Source (src/parsers/custom/facility_000530_parser.py)
"""Parser for Ark Self-Storage Group Llc (Douglas, GA)."""

from __future__ import annotations

from bs4 import BeautifulSoup

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


class Facility000530Parser(BaseParser):
    """Extract storage units from Ark Self Storage - Douglas location.

    The page uses a <table class="pricing-table"> with columns:
    Size | Description | Monthly Rate (td.price).
    """

    platform = "custom_facility_000530"

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

        table = soup.find("table", class_="pricing-table")
        if not table:
            result.warnings.append("No pricing-table found on page")
            return result

        tbody = table.find("tbody")
        rows = tbody.find_all("tr") if tbody else table.find_all("tr")[1:]  # skip header

        for row in rows:
            cells = row.find_all("td")
            if len(cells) < 3:
                continue

            size_text = cells[0].get_text(strip=True)
            description = cells[1].get_text(strip=True)
            price_text = cells[2].get_text(strip=True)

            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}
            unit.price = self.normalize_price(price_text)
            unit.description = description
            if unit.size or unit.price:
                result.units.append(unit)

        if not result.units:
            result.warnings.append("No units extracted from pricing-table rows")

        return result

Scrape Runs (5)

Run #678 Details

Status
exported
Parser Used
Facility000530Parser
Platform Detected
table_layout
Units Found
5
Stage Reached
exported
Timestamp
2026-03-21 18:44:34.697253
Timing
Stage Duration
Fetch2417ms
Detect23ms
Parse22ms
Export5ms

Snapshot: 000530_20260321T184437Z.html · Show Snapshot · Open in New Tab

Parsed Units (5)

5 x 10

$89.00/mo

5 x 10

$99.00/mo

10 x 5

$129.00/mo

10 x 10

$119.00/mo

10 x 20

$178.00/mo

← Back to dashboard