gitextract_9zcbq9pw/ ├── .github/ │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── dependabot.yml │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .pre-commit-hooks.yaml ├── .prettierrc.toml ├── .python-version ├── LICENSE ├── README.md ├── justfile ├── pyproject.toml ├── src/ │ └── nb_clean/ │ ├── __init__.py │ ├── __main__.py │ ├── cli.py │ └── py.typed └── tests/ ├── conftest.py ├── notebooks/ │ ├── clean.ipynb │ ├── clean_with_cell_metadata.ipynb │ ├── clean_with_counts.ipynb │ ├── clean_with_empty_cells.ipynb │ ├── clean_with_notebook_metadata.ipynb │ ├── clean_with_outputs.ipynb │ ├── clean_with_outputs_with_counts.ipynb │ ├── clean_with_tags_metadata.ipynb │ ├── clean_with_tags_special_metadata.ipynb │ ├── clean_without_empty_cells.ipynb │ ├── clean_without_notebook_metadata.ipynb │ ├── dirty.ipynb │ ├── dirty_empty_octave.ipynb │ └── dirty_with_version.ipynb ├── test_check_notebook.py ├── test_clean_notebook.py ├── test_cli.py └── test_git_integration.py