Initial commit: Daily News App

企業內部新聞彙整與分析系統
- 自動新聞抓取 (Digitimes, 經濟日報, 工商時報)
- AI 智慧摘要 (OpenAI/Claude/Ollama)
- 群組管理與訂閱通知
- 已清理 Python 快取檔案

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
donald
2025-12-03 23:53:24 +08:00
commit db0f0bbfe7
50 changed files with 11883 additions and 0 deletions

19
app/services/__init__.py Normal file
View File

@@ -0,0 +1,19 @@
"""
服務模組
"""
from app.services.llm_service import generate_summary, test_llm_connection
from app.services.notification_service import send_email, send_report_notifications
from app.services.crawler_service import get_crawler, BaseCrawler
from app.services.scheduler_service import init_scheduler, shutdown_scheduler, run_daily_crawl
__all__ = [
"generate_summary",
"test_llm_connection",
"send_email",
"send_report_notifications",
"get_crawler",
"BaseCrawler",
"init_scheduler",
"shutdown_scheduler",
"run_daily_crawl"
]