- URL:
- https://<notebookserveradmin>/notebooks/runtimes/<runtimeID>/manifest
- Methods:
GET
- Required Capability:
- Administrator or Create and Edit
- Version Introduced:
- 10.7
Description
This resource returns a JSON representation of all the Python libraries supported in the specified notebook runtime. Notebook authors who open notebooks using this runtime can import the libraries in the manifest into their notebooks.
Request parameters
Parameter | Details |
---|---|
| The response format. The default is Values: |
JSON Response syntax
{
"libraries": [
{
"build_string": "<build_string_of_library>",
"dist_name": "<distribution_name_of_library>",
"base_url": null,
"channel": "defaults",
"name": "<common_name_of_library>",
"build_number": <build number>,
"version": "<version>",
"platform": null
}
]
}
JSON Response example
{
"libraries": [
{
"build_string": "gpu",
"dist_name": "_tflow_select-2.1.0-gpu",
"base_url": null,
"channel": "defaults",
"name": "_tflow_select",
"build_number": 0,
"version": "2.1.0",
"platform": null
},
{
"build_string": "py36_0",
"dist_name": "absl-py-0.6.1-py36_0",
"base_url": null,
"channel": "defaults",
"name": "absl-py",
"build_number": 0,
"version": "0.6.1",
"platform": null
}
]
}