mirror of
https://github.com/ZhuLinsen/daily_stock_analysis
synced 2026-09-20 10:53:33 +08:00
- 新增 EfinanceFetcher 数据获取器(Priority 0) - 数据源:https://github.com/Micro-sheep/efinance - 支持股票历史K线、ETF数据、实时行情、基本信息等 - 更新 DataFetcherManager 默认数据源顺序 - 添加 efinance>=0.5.5 依赖 数据源优先级顺序: 0. EfinanceFetcher (efinance) 1. AkshareFetcher (akshare) 2. TushareFetcher (tushare) 3. BaostockFetcher (baostock) 4. YfinanceFetcher (yfinance)
67 lines
600 B
Plaintext
67 lines
600 B
Plaintext
# 环境变量文件(包含敏感信息,禁止提交)
|
|
.env
|
|
.env.*
|
|
*.env
|
|
*.env.local
|
|
.env.*.local
|
|
|
|
# 测试文件(可能包含敏感配置)
|
|
test_*.py
|
|
!test_env.py
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# 虚拟环境
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.cursorrules
|
|
|
|
# 数据和日志
|
|
data/
|
|
logs/
|
|
reports/
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# 系统文件
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 测试
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
docs/
|
|
|
|
run.sh |