dotfiles/vscode/.vscode/extensions/ms-toolsai.jupyter-2024.6.0-darwin-arm64/pythonFiles/vscode_datascience_helpers/getJupyterKernels.py
Errol Sancaktar 5f8db31398 alacritty
2024-07-15 17:06:13 -06:00

14 lines
318 B
Python

# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import json
import jupyter_client.kernelspec
import sys
specs = jupyter_client.kernelspec.KernelSpecManager().get_all_specs()
all_specs = {"kernelspecs": specs}
sys.stdout.write(json.dumps(all_specs))
sys.stdout.flush()