# Virtual environment
.venv/

# Python cache
__pycache__/
*.py[cod]
*.pyo
*.pyd

# Package build
dist/
build/
*.egg-info/
*.egg

# Database files
*.db
*.sqlite
*.sqlite3

# Test cache and coverage
.pytest_cache/
.coverage
htmlcov/
coverage.xml

# Type checker
.mypy_cache/
.ruff_cache/

# Environment variables
.env
.env.local

# VS Code
.vscode/

# Windows
Thumbs.db
desktop.ini

# Logs
*.log