├── .git-blame-ignore-revs ├── .github ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── downstream.yml │ ├── enforce-label.yml │ ├── prep-release.yml │ ├── publish-changelog.yml │ ├── publish-release.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE.md ├── SECURITY.md ├── docs ├── Makefile ├── api │ ├── jupyter_core.rst │ ├── jupyter_core.utils.rst │ └── modules.rst ├── conf.py ├── index.rst └── make.bat ├── examples ├── completions-zsh └── jupyter-completion.bash ├── jupyter.py ├── jupyter_core ├── __init__.py ├── __main__.py ├── application.py ├── command.py ├── migrate.py ├── paths.py ├── py.typed ├── troubleshoot.py ├── utils │ └── __init__.py └── version.py ├── pyproject.toml ├── scripts ├── jupyter └── jupyter-migrate └── tests ├── __init__.py ├── dotipython ├── nbextensions │ └── myext.js └── profile_default │ ├── ipython_config.py │ ├── ipython_console_config.py │ ├── ipython_kernel_config.py │ ├── ipython_nbconvert_config.py │ ├── ipython_notebook_config.py │ └── static │ └── custom │ ├── custom.css │ └── custom.js ├── dotipython_empty └── profile_default │ ├── ipython_config.py │ ├── ipython_console_config.py │ ├── ipython_kernel_config.py │ ├── ipython_nbconvert_config.py │ ├── ipython_notebook_config.py │ └── static │ └── custom │ ├── custom.css │ └── custom.js ├── mocking.py ├── test_application.py ├── test_command.py ├── test_migrate.py ├── test_paths.py ├── test_troubleshoot.py └── test_utils.py /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # Initial pre-commit reformat 2 | d6a8168b9f6b8a28bba5f7cca3d6a9c31da041b6 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/downstream.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/.github/workflows/downstream.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/.github/workflows/enforce-label.yml -------------------------------------------------------------------------------- /.github/workflows/prep-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/.github/workflows/prep-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/.github/workflows/publish-changelog.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/RELEASE.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api/jupyter_core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/docs/api/jupyter_core.rst -------------------------------------------------------------------------------- /docs/api/jupyter_core.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/docs/api/jupyter_core.utils.rst -------------------------------------------------------------------------------- /docs/api/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/docs/api/modules.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/docs/make.bat -------------------------------------------------------------------------------- /examples/completions-zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/examples/completions-zsh -------------------------------------------------------------------------------- /examples/jupyter-completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/examples/jupyter-completion.bash -------------------------------------------------------------------------------- /jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/jupyter.py -------------------------------------------------------------------------------- /jupyter_core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/jupyter_core/__init__.py -------------------------------------------------------------------------------- /jupyter_core/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/jupyter_core/__main__.py -------------------------------------------------------------------------------- /jupyter_core/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/jupyter_core/application.py -------------------------------------------------------------------------------- /jupyter_core/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/jupyter_core/command.py -------------------------------------------------------------------------------- /jupyter_core/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/jupyter_core/migrate.py -------------------------------------------------------------------------------- /jupyter_core/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/jupyter_core/paths.py -------------------------------------------------------------------------------- /jupyter_core/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jupyter_core/troubleshoot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/jupyter_core/troubleshoot.py -------------------------------------------------------------------------------- /jupyter_core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/jupyter_core/utils/__init__.py -------------------------------------------------------------------------------- /jupyter_core/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/jupyter_core/version.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/jupyter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/scripts/jupyter -------------------------------------------------------------------------------- /scripts/jupyter-migrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/scripts/jupyter-migrate -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dotipython/nbextensions/myext.js: -------------------------------------------------------------------------------- 1 | var hello; 2 | -------------------------------------------------------------------------------- /tests/dotipython/profile_default/ipython_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/dotipython/profile_default/ipython_config.py -------------------------------------------------------------------------------- /tests/dotipython/profile_default/ipython_console_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/dotipython/profile_default/ipython_console_config.py -------------------------------------------------------------------------------- /tests/dotipython/profile_default/ipython_kernel_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/dotipython/profile_default/ipython_kernel_config.py -------------------------------------------------------------------------------- /tests/dotipython/profile_default/ipython_nbconvert_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/dotipython/profile_default/ipython_nbconvert_config.py -------------------------------------------------------------------------------- /tests/dotipython/profile_default/ipython_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/dotipython/profile_default/ipython_notebook_config.py -------------------------------------------------------------------------------- /tests/dotipython/profile_default/static/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/dotipython/profile_default/static/custom/custom.css -------------------------------------------------------------------------------- /tests/dotipython/profile_default/static/custom/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/dotipython/profile_default/static/custom/custom.js -------------------------------------------------------------------------------- /tests/dotipython_empty/profile_default/ipython_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/dotipython_empty/profile_default/ipython_config.py -------------------------------------------------------------------------------- /tests/dotipython_empty/profile_default/ipython_console_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/dotipython_empty/profile_default/ipython_console_config.py -------------------------------------------------------------------------------- /tests/dotipython_empty/profile_default/ipython_kernel_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/dotipython_empty/profile_default/ipython_kernel_config.py -------------------------------------------------------------------------------- /tests/dotipython_empty/profile_default/ipython_nbconvert_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/dotipython_empty/profile_default/ipython_nbconvert_config.py -------------------------------------------------------------------------------- /tests/dotipython_empty/profile_default/ipython_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/dotipython_empty/profile_default/ipython_notebook_config.py -------------------------------------------------------------------------------- /tests/dotipython_empty/profile_default/static/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/dotipython_empty/profile_default/static/custom/custom.css -------------------------------------------------------------------------------- /tests/dotipython_empty/profile_default/static/custom/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/dotipython_empty/profile_default/static/custom/custom.js -------------------------------------------------------------------------------- /tests/mocking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/mocking.py -------------------------------------------------------------------------------- /tests/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/test_application.py -------------------------------------------------------------------------------- /tests/test_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/test_command.py -------------------------------------------------------------------------------- /tests/test_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/test_migrate.py -------------------------------------------------------------------------------- /tests/test_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/test_paths.py -------------------------------------------------------------------------------- /tests/test_troubleshoot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/test_troubleshoot.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/jupyter_core/HEAD/tests/test_utils.py --------------------------------------------------------------------------------