Facility: 109733
Mor Storage
- Facility ID
- 109733
- Name
- Mor Storage
- URL
- https://www.mor-storage.com/305-e-fleeman-manila-ar-72442
- Address
- 305 E Fleeman St, Manila, AR 72442, USA, Manila, Arkansas 72442
- Platform
- custom_facility_109733
- Parser File
- src/parsers/custom/facility_109733_parser.py
- Last Scraped
- 2026-03-27 14:09:31.818564
- Created
- 2026-03-14 16:21:53.706708
- Updated
- 2026-03-27 14:09:31.818564
- Parser Status
- ⚠ Needs Fix
- Status Reason
- Parser returned 0 units
- Last Healing Attempt
- Not attempted
Parser Source (src/parsers/custom/facility_109733_parser.py)
"""Parser for Mor Storage."""
from __future__ import annotations
import re
from bs4 import BeautifulSoup
from src.parsers.base import BaseParser, ParseResult, UnitResult
class Facility109733Parser(BaseParser):
"""Extract storage units from Mor Storage using table layout."""
platform = "custom_facility_109733"
def parse(self, html: str, url: str = "") -> ParseResult:
soup = BeautifulSoup(html, "lxml")
result = ParseResult(platform=self.platform, parser_name=self.__class__.__name__)
table = soup.select_one("table._2QREMkZenGaFOjxHn8CDhU.table")
if not table:
# Fallback: find table with most price-containing rows
tables = soup.find_all("table")
best, best_count = None, 0
for t in tables:
c = sum(1 for r in t.find_all("tr") if "$" in r.get_text())
if c > best_count:
best_count = c
best = t
table = best
if not table:
result.warnings.append("No pricing table found")
return result
rows = table.find_all("tr")
for row in rows:
cells = row.find_all(["td", "th"])
if len(cells) < 2:
continue
row_text = row.get_text()
# Skip header rows
if not re.search(r"\$\d+", row_text) and not re.search(r"\d+\s*[\'\'xX]\s*\d+", row_text):
continue
unit = UnitResult()
# Extract size
size_text = cells[1].get_text(strip=True)
if size_text:
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}
# Extract price
price_text = cells[2].get_text(strip=True)
if price_text:
# Try to find the price in this cell
price_match = re.search(r"\$(\d[\d,.]*)", price_text)
if price_match:
unit.price = self.normalize_price(price_match.group(1))
unit.description = row.get_text(separator=" ", strip=True)
if unit.size or unit.price:
result.units.append(unit)
if not result.units:
result.warnings.append("No units found in table")
return result
Scrape Runs (5)
-
exported Run #22252026-03-27 14:09:27.436486 | Facility109733Parser
-
exported Run #22242026-03-27 14:09:25.886044 | Facility109733Parser
-
exported Run #13772026-03-23 03:11:22.638145 | 30 units | Facility109733Parser | View Data →
-
exported Run #8842026-03-21 19:03:57.397426 | 30 units | Facility109733Parser | View Data →
-
exported Run #4332026-03-14 16:43:23.937206 | 30 units | Facility109733Parser | View Data →
Run #433 Details
- Status
- exported
- Parser Used
- Facility109733Parser
- Platform Detected
- storageunitsoftware
- Units Found
- 30
- Stage Reached
- exported
- Timestamp
- 2026-03-14 16:43:23.937206
Timing
| Stage | Duration |
|---|---|
| Fetch | 3564ms |
| Detect | 44ms |
| Parse | 87ms |
| Export | 21ms |
Snapshot: 109733_20260314T164327Z.html · Show Snapshot · Open in New Tab
Parsed Units (30)
Self Storage, inside access, climate controlled, Loading Bay 1 Access
$47.00/mo
Self Storage, inside access, climate controlled, Loading Bay 2 Access
$47.00/mo
Self Storage, inside access, Non Climate Control, Building 4
$35.00/mo
Self Storage, inside access, climate controlled, Loading Bay 2 Access
$57.00/mo
Self Storage, inside access, climate controlled, Loading Bay 1 Access
$57.00/mo
Self Storage, inside access, climate controlled, Loading Bay 1 Access
$67.00/mo
Self Storage, inside access, climate controlled, Loading Bay 2 Access
$67.00/mo
Self Storage, inside access, climate controlled
$68.00/mo
Self Storage, inside access, climate controlled
$70.00/mo
Self Storage, inside access, Non Climate Control, Building 4
$55.00/mo
Self Storage, inside access, Non Climate Control, Building 4
$70.00/mo
Self Storage, inside access, Non Climate Control, Building 4, Oblong/Angled
$75.00/mo
Self Storage, inside access, Non Climate Control, Building 4
$75.00/mo
Self Storage, inside access, climate controlled
$99.00/mo
Self Storage, electric included, inside access, climate controlled
$112.00/mo
Self Storage, inside access, Non Climate Control, Building 4
$75.00/mo
Self Storage, inside access, Non Climate Control, Building 4
$75.00/mo
Triangle Room, inside access, climate controlled
$127.00/mo
Self Storage, inside access, Non Climate Control, Building 4
$75.00/mo
Self Storage, inside access, Non Climate Control, Building 4
$79.00/mo
Self Storage, inside access, Non Climate Control, Building 4
$85.00/mo
Self Storage, inside access, Non Climate Control, Building 4
$95.00/mo
Self Storage, inside access, climate controlled
$150.00/mo
Triangle Room, inside access, climate controlled
$167.00/mo
Self Storage, electric included, outside access, climate controlled, lights inside, drive up
$187.00/mo
Triangle Room, inside access, Non Climate Control, Building 4
$140.00/mo
Self Storage, outside access, drive up, Non Climate Control, Building 4
$155.00/mo
Triangle Room, electric included, outside access, climate controlled, lights inside, drive up
$247.00/mo
Self Storage, outside access, drive up, Non Climate Control, Building 4
$165.00/mo
Self Storage, outside access, drive up, Non Climate Control, Building 4
$299.00/mo
All Failures for this Facility (2)
parse
_WarningAsException
scraper
no_units_extracted
warning
Run #N/A | 2026-03-27 14:09:31.800985
No units extracted for 109733
Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 109733
parse
_WarningAsException
scraper
no_units_extracted
warning
Run #N/A | 2026-03-27 14:09:31.372471
No units extracted for 109733
Stack trace
src.reporting.failure_reporter._WarningAsException: No units extracted for 109733