Files
guba-indicator/.gitignore
xiaji 9d33a8e179 feat: 添加上证所截图功能并优化股票数据获取
- 新增上证所网页元素截图功能,使用Playwright实现
- 优化股票数据获取方式,改用新浪财经JS接口
- 调整情感分析评分规则为7级分类
- 添加截图显示组件到主界面
- 更新依赖项,替换playwright为selenium
2026-01-13 17:06:18 +08:00

54 lines
422 B
Plaintext

# 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
.vscode/
.idea/
*.swp
*.swo
*~
# 配置文件(包含敏感信息)
config.json
# 数据库
*.db
*.sqlite
# 日志
*.log
# 系统文件
.DS_Store
Thumbs.db
# 临时文件
*.tmp
*.bak
test*.*