# Python 编译缓存
__pycache__/
*.py[cod]
*$py.class
*.so

# Python 虚拟环境
venv/
env/
.venv/
.env.local

# 临时文件
*.log
*.tmp
*.temp
*.bak

# 本地配置（可能包含敏感信息）
*.local.json
config.local.json
.local.env

# macOS 系统文件
.DS_Store
.AppleDouble
.LSOverride

# Windows 系统文件
Thumbs.db
ehthumbs.db
Desktop.ini

# 编辑器配置
.vscode/
.idea/
*.swp
*.swo
*~

# 测试/输出目录（可选）
/test-output/
/tmp/
