# Secrets — never commit
.env
*.sqlite
*.sqlite3

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
dist/
*.egg-info/
.eggs/

# Virtual environments
.venv/
venv/
env/

# Testing / coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.hypothesis/

# Type checkers
.mypy_cache/
.pyright/
.pytype/

# Tooling
.ruff_cache/

# Editors / OS
.DS_Store
.idea/
*.swp
