| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| env/ | |
| venv/ | |
| .venv | |
| *.egg-info/ | |
| dist/ | |
| build/ | |
| # Environment variables | |
| .env | |
| *.env | |
| !.env.example | |
| # Google Cloud credentials | |
| *.json | |
| !package.json | |
| !package-lock.json | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Streamlit | |
| .streamlit/secrets.toml | |
| # Model cache | |
| *.bin | |
| *.safetensors | |
| models/ | |
| # Logs | |
| *.log | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |