70 lines
602 B
Plaintext
70 lines
602 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/
|
|
.env
|
|
.env.local
|
|
|
|
# 配置文件(包含敏感信息)
|
|
config.yaml
|
|
*.secret
|
|
*.key
|
|
|
|
# 日志文件
|
|
*.log
|
|
logs/
|
|
|
|
# 测试相关
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage.*
|
|
*.lcov
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# 操作系统
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 项目特定
|
|
monitor_images/
|
|
processed_images/
|
|
test_*.py
|
|
test_img.jpg
|
|
test_img.png
|
|
|
|
# 临时文件
|
|
temp/
|
|
tmp/
|
|
*.tmp
|
|
*.temp |