Facility: 002143
Aaa Secured Storage Llc
- Facility ID
- 002143
- Name
- Aaa Secured Storage Llc
- URL
- https://www.aaasecuredstoragemedford.com/
- Address
- 1060 Dillon Way, Central Point, OR 97502, USA, Central Point, Oregon 97502
- Platform
- custom_facility_002143
- Parser File
- src/parsers/custom/facility_002143_parser.py
- Last Scraped
- 2026-03-27 13:39:42.211517
- Created
- 2026-03-23 02:35:08.816820
- Updated
- 2026-03-27 13:39:42.211517
- Parser Status
- ⚠ Needs Fix
- Status Reason
- Parser returned 0 units
- Last Healing Attempt
- Not attempted
Parser Source (src/parsers/custom/facility_002143_parser.py)
"""Parser for Aaa Secured Storage Llc (Medford, OR).
This site is a brochure-only Divi/WordPress page. It advertises storage
units with climate control and 24/7 surveillance but does NOT publish unit
sizes or prices online. The homepage and /storage-units/ page both say
"Call For Details" (541-826-1850).
The parser checks for any pricing indicators and returns a clear no_pricing
warning when none are found.
"""
from __future__ import annotations
import re
from bs4 import BeautifulSoup
from src.parsers.base import BaseParser, ParseResult, UnitResult
class Facility002143Parser(BaseParser):
"""Extract storage units from Aaa Secured Storage Llc."""
platform = "custom_facility_002143"
# Patterns that would indicate pricing data is present
_PRICE_RE = re.compile(r"\$\s*\d[\d,.]*")
_SIZE_RE = re.compile(
r"\d+\s*['\u2032]?\s*[xX\u00d7]\s*\d+\s*['\u2032]?"
)
def parse(self, html: str, url: str = "") -> ParseResult:
soup = BeautifulSoup(html, "lxml")
result = ParseResult(
platform=self.platform,
parser_name=self.__class__.__name__,
)
for tag in soup.find_all(["script", "style"]):
tag.decompose()
body_text = soup.get_text(separator="\n")
prices = self._PRICE_RE.findall(body_text)
sizes = self._SIZE_RE.findall(body_text)
if not prices and not sizes:
result.warnings.append(
"no_pricing: Aaa Secured Storage Llc is a brochure-only "
"Divi/WordPress site. No unit sizes or prices are published "
"online. Contact 541-826-1850 for pricing."
)
return result
# If the site has been updated to include pricing, attempt extraction.
seen: set[tuple[str, str]] = set()
size_price_re = re.compile(
r"(\d+\s*['\u2032]?\s*[xX\u00d7]\s*\d+\s*['\u2032]?)"
r"[^\$]{0,120}"
r"\$(\d[\d,.]*)",
re.DOTALL,
)
for m in size_price_re.finditer(body_text):
size_text = m.group(1).strip()
price_text = m.group(2).strip()
key = (size_text, price_text)
if key in seen:
continue
seen.add(key)
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 = m.group(0).strip()[:200]
if unit.size or unit.price:
result.units.append(unit)
if not result.units:
result.warnings.append(
"no_pricing: Detected price/size tokens on page but could "
"not pair them into units. Site may have been updated."
)
return result
Scrape Runs (3)
Run #1023 Details
- Status
- exported
- Parser Used
- Facility002143Parser
- Platform Detected
- table_layout
- Units Found
- 0
- Stage Reached
- exported
- Timestamp
- 2026-03-23 02:39:05.753708
Timing
| Stage | Duration |
|---|---|
| Fetch | 5579ms |
| Detect | 29ms |
| Parse | 16ms |
| Export | 2ms |
Snapshot: 002143_20260323T023911Z.html · Show Snapshot · Open in New Tab
No units found in this run.
All Failures for this Facility (3)
parse
_WarningAsException
scraper
no_units_extracted
warning
Run #N/A | 2026-03-27 13:39:42.192264
No units extracted for 002143
Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 002143
parse
_WarningAsException
scraper
no_units_extracted
warning
Run #N/A | 2026-03-27 13:39:41.441693
No units extracted for 002143
Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 002143
parse
_WarningAsException
scraper
no_units_extracted
warning
Run #N/A | 2026-03-23 02:39:11.400640
No units extracted for 002143
Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 002143