Implement StockCollector to fetch stock master data from KRX (Korea Exchange) including market cap, EPS, BPS, and dividend info. Implement SectorCollector to fetch WICS sector classification from WISEindex. Both collectors use PostgreSQL upsert for efficient updates. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
6 lines
257 B
Python
6 lines
257 B
Python
from app.services.collectors.base import BaseCollector
|
|
from app.services.collectors.stock_collector import StockCollector
|
|
from app.services.collectors.sector_collector import SectorCollector
|
|
|
|
__all__ = ["BaseCollector", "StockCollector", "SectorCollector"]
|