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

# Virtualenvs
.venv/
venv/
env/

# Secrets / config local
.env
.env.*
!.env.example

# Datos / runtime
*.db
*.db-wal
*.db-shm
/data/

# Tests / coverage
.pytest_cache/
.coverage
htmlcov/

# Editor / OS
.vscode/
.idea/
*.swp
.DS_Store
