gitextract_xrhwfx_4/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── check-release.yml │ ├── main.yml │ ├── prep-release.yml │ ├── publish-changelog.yml │ └── publish-release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASING.md ├── binder/ │ ├── empty_notebook.ipynb │ ├── environment.yml │ └── run_nbclient.ipynb ├── docs/ │ ├── Makefile │ ├── UPDATE.md │ ├── _static/ │ │ └── custom.css │ ├── autogen_config.py │ ├── client.rst │ ├── conf.py │ ├── index.rst │ ├── installation.rst │ ├── make.bat │ └── reference/ │ ├── index.rst │ ├── modules.rst │ └── nbclient.rst ├── nbclient/ │ ├── __init__.py │ ├── _version.py │ ├── cli.py │ ├── client.py │ ├── exceptions.py │ ├── jsonutil.py │ ├── output_widget.py │ ├── py.typed │ └── util.py ├── pyproject.toml └── tests/ ├── __init__.py ├── base.py ├── conftest.py ├── fake_kernelmanager.py ├── files/ │ ├── Autokill.ipynb │ ├── Check History in Memory.ipynb │ ├── Clear Output.ipynb │ ├── Disable Stdin.ipynb │ ├── Empty Cell.ipynb │ ├── Error.ipynb │ ├── Factorials.ipynb │ ├── HelloWorld.ipynb │ ├── Inline Image.ipynb │ ├── Interrupt.ipynb │ ├── JupyterWidgets.ipynb │ ├── Other Comms.ipynb │ ├── Output.ipynb │ ├── Parallel Execute A.ipynb │ ├── Parallel Execute B.ipynb │ ├── SVG.ipynb │ ├── Skip Exceptions with Cell Tags.ipynb │ ├── Skip Exceptions.ipynb │ ├── Skip Execution with Cell Tag.ipynb │ ├── Sleep1s.ipynb │ ├── Unicode.ipynb │ ├── UnicodePy3.ipynb │ └── update-display-id.ipynb ├── test_cli.py ├── test_client.py └── test_util.py