# Python bytecode and caches
__pycache__/
*.py[cod]
*.pyo
*.pyd

# Virtual environments
.venv/
venv/
env/

# Environment variables
.env
.env.*
!.env.example

# Packaging / build artifacts
build/
dist/
*.egg-info/
.eggs/

# Test and coverage outputs
.pytest_cache/
.coverage
htmlcov/

# IDE/editor files
.vscode/
.idea/

# OS files
.DS_Store
Thumbs.db
