gitextract_p8qbd5yr/ ├── .copier-answers.yaml ├── .gitattributes ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── dependabot.yaml │ └── workflows/ │ ├── build.yaml │ ├── copier.yaml │ └── license-scanning.yaml ├── .gitignore ├── .vscode/ │ └── settings.json ├── AUTHORS ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── binder/ │ ├── postBuild │ ├── requirements.txt │ └── runtime.txt ├── js/ │ ├── .eslintrc.js │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── src/ │ │ ├── activate.js │ │ ├── execute.js │ │ ├── extension/ │ │ │ ├── install.json │ │ │ └── jupyterlab_templates.json │ │ ├── index.js │ │ ├── notebook.js │ │ └── widget.js │ ├── style/ │ │ └── index.css │ └── tests/ │ ├── activate.test.js │ ├── assetsTransformer.js │ ├── export.test.js │ ├── fileMock.js │ ├── setup.js │ └── styleMock.js ├── jupyterlab_templates/ │ ├── __init__.py │ ├── _version.py │ ├── extension.py │ ├── templates/ │ │ └── notebook_templates/ │ │ └── jupyterlab_templates/ │ │ └── Sample.ipynb │ └── tests/ │ ├── __init__.py │ ├── test_all.py │ ├── test_extension.py │ └── test_init.py └── pyproject.toml