Files
Meal-Planner/backend/app/scraper/__init__.py
T
admin 933a0cc9db feat: implement Lucky California scraper with Playwright + BeautifulSoup
- Add BaseScraper with rate limiting, retries, session management
- Add LuckyCaliforniaScraper with Playwright for dynamic content
- Add ScraperService to save scraped items to grocery_item table
- Connect /api/admin/scrape to ScraperService
- Update ORIENTATION.md phase table
2026-05-04 20:50:27 -07:00

4 lines
135 B
Python

from .base import BaseScraper
from .lucky_ca_scraper import LuckyCaliforniaScraper
__all__ = ["BaseScraper", "LuckyCaliforniaScraper"]