FastAPI-based scraper for commodity ticker prices (HO, CL, RB futures) and competitor oil pricing from NewEnglandOil. Includes cron-driven scraping, PostgreSQL storage, and REST endpoints for price retrieval. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
258 B
Python
10 lines
258 B
Python
"""
|
|
New England Oil Scraper Module.
|
|
|
|
This package contains code specific to scraping prices from the New England Oil website.
|
|
"""
|
|
|
|
from app.newenglandoil.scraper import scrape_newengland_oil, ScraperError
|
|
|
|
__all__ = ['scrape_newengland_oil', 'ScraperError']
|