# Python
__pycache__/
*.py[cod]
*.egg-info/

# 虚拟环境
.venv/
venv/

# 环境变量与密钥
.env
.env.*
!.env.example
*.pem
*.key

# 测试/构建产物
.pytest_cache/
.coverage
coverage.xml
htmlcov/

# git / IDE
.git/
.gitignore
.vscode/
.idea/
.DS_Store

# 容器内不需要的目录
docs/
tests/
