| # Python bytecode | |
| __pycache__/ | |
| *.pyc | |
| *.pyo | |
| *.pyd | |
| # Editor / OS | |
| .DS_Store | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| # Build / dist artifacts | |
| *.egg-info/ | |
| build/ | |
| dist/ | |
| .eggs/ | |
| # Virtualenvs | |
| .venv/ | |
| venv/ | |
| env/ | |
| # Test / coverage | |
| .pytest_cache/ | |
| .coverage | |
| .mypy_cache/ | |
| .ruff_cache/ | |
| # Notebook checkpoints | |
| .ipynb_checkpoints/ | |
| # Logs | |
| *.log | |