# Python cache and build artifacts
__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

# Virtual environments
.venv/
venv/
ENV/
env/

# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Git
.git/
.gitignore

# Docker
Dockerfile*
docker-compose*
.dockerignore

# Database files (will be created in volume)
*.db
*.sqlite
*.sqlite3

# Logs
*.log
logs/

# Environment files (handled separately)
.env*

# Temporary files
tmp/
temp/
.tmp/

# Hook configuration files (generated)
claude-hooks-*.json

# Cache
.cache/
.pytest_cache/

# Coverage reports
htmlcov/
.coverage
.coverage.*

# Node modules (if any)
node_modules/

# Documentation build
docs/_build/