| # python specific ignores | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| # Virtual environments | |
| .venv/ | |
| venv/ | |
| env/ | |
| ENV/ | |
| # Environment and local secrets | |
| .env | |
| .env.* | |
| !.env.example | |
| # Build and packaging artifacts | |
| build/ | |
| dist/ | |
| *.egg-info/ | |
| .eggs/ | |
| # Caches and tooling | |
| .pytest_cache/ | |
| .mypy_cache/ | |
| .ruff_cache/ | |
| .ipynb_checkpoints/ | |
| .cache/ | |
| # IDE/editor | |
| .vscode/ | |
| .idea/ | |