Facility: 19

A1 Stor All

Stale Data Warning: This facility has not been successfully scraped in 30 days (threshold: 3 days). Data may be outdated.
Facility Information active
Facility ID
19
Name
A1 Stor All
URL
https://a1storall.com/
Address
N/A
Platform
custom_facility_19
Parser File
src/parsers/custom/facility_19_parser.py
Last Scraped
2026-03-23 03:14:19.485037
Created
2026-03-14 16:21:53.706708
Updated
2026-03-23 03:14:19.495718
Parser & Healing Diagnosis working
Parser Status
✓ Working
Status Reason
N/A
Last Healing Attempt
Not attempted
Parser Source (src/parsers/custom/facility_19_parser.py)
"""Parser for A-1 Stor-All Self-Storage (Milwaukee area)."""

from __future__ import annotations

from bs4 import BeautifulSoup

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


class Facility19Parser(BaseParser):
    """Extract storage units from A-1 Stor-All.

    Multiple location tables with class ``tblRate``. Each row contains
    size text and a ``span.uPrice`` element with the price or "call".
    The "Climate Controlled" table header marks those units accordingly.
    """

    platform = "custom_facility_19"

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

        rate_tables = soup.select("table.tblRate")
        if not rate_tables:
            result.warnings.append("No tblRate tables found")
            return result

        for table in rate_tables:
            # Determine location/type from the first row header
            header_row = table.find("tr")
            if not header_row:
                continue

            header_text = header_row.get_text(separator=" ", strip=True)
            is_climate = "climate" in header_text.lower()

            rows = table.find_all("tr")
            for row in rows:
                price_span = row.find("span", class_="uPrice")
                if not price_span:
                    continue

                td = row.find("td")
                if not td:
                    continue

                full_text = td.get_text(strip=True)
                price_text = price_span.get_text(strip=True)

                # Size text is everything before the price span
                size_text = full_text.replace(price_text, "").strip()

                unit = UnitResult()
                unit.size = size_text
                unit.description = f"{header_text} | {size_text} | {price_text}"
                w, ln, sq = self.normalize_size(size_text)
                if w is not None:
                    unit.metadata = {"width": w, "length": ln, "sqft": sq}

                if price_text.lower() != "call":
                    unit.sale_price = self.normalize_price(price_text)

                if is_climate:
                    meta = unit.metadata or {}
                    meta["climateControlled"] = True
                    unit.metadata = meta

                if (unit.metadata and "width" in unit.metadata) or unit.sale_price:
                    result.units.append(unit)

        if not result.units:
            result.warnings.append("Rate tables found but no units extracted")

        return result

Scrape Runs (3)

Run #914 Details

Status
exported
Parser Used
Facility19Parser
Platform Detected
table_layout
Units Found
37
Stage Reached
exported
Timestamp
2026-03-21 19:06:58.313738
Timing
Stage Duration
Fetch2147ms
Detect11ms
Parse15ms
Export9ms

Snapshot: 19_20260321T190700Z.html · Show Snapshot · Open in New Tab

Parsed Units (37)

5 x 10

$45.00/mo

10 x 10

$75.00/mo

10 x 15

$100.00/mo

10 x 20

$130.00/mo

10 x 25

$140.00/mo

10 x 30

$155.00/mo

10 x 40

No price

12.5 x 40

No price

20 x 20

No price

20 x 30

No price

20 x 40

No price

5 x 10

$45.00/mo

10 x 10

$75.00/mo

10 x 15

$100.00/mo

10 x 20

$130.00/mo

10 x 25

$140.00/mo

10 x 30

$155.00/mo

10 x 40

No price

12.5 x 40

No price

15 x 30

No price

20 x 20

No price

20 x 25

No price

20 x 30

No price

20 x 40

No price

7.5 x 10

$92.00/mo

10 x 10

$100.00/mo

7.5 x 15

$113.00/mo

10 x 15

$122.00/mo

7.5 x 20

$122.00/mo

10 x 20

$165.00/mo

10 x 20

$45.00/mo

10 x 25

$55.00/mo

10 x 30

$65.00/mo

11 x 25

$60.00/mo

11 x 30

$65.00/mo

11 x 35

$75.00/mo

11 x 40

$85.00/mo

← Back to dashboard