solorice/vscode/extensions/ms-toolsai.jupyter-2022.3.1000901801/pythonFiles/vscode_datascience_helpers/getJupyterKernels.py
2022-04-28 20:54:44 +03: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()