# Python
__pycache__/
*.pyc
*.pyo
*.egg-info/
dist/
build/

# Virtual environments
.venv/
venv/
env/

# Testing
.pytest_cache/
.coverage
htmlcov/

# Linting
.ruff_cache/
.mypy_cache/

# Environment
.env

# Sessions (user data, not code)
sessions/*.json
sessions/*.jsonl
sessions/*.jsonl.*

# Logs
logs/

# IDE
.vscode/
.idea/
*.swp
*.swo
