Manifest

URL:
https://<root>/notebooks/runtimes/<runtimeID>/manifest
Methods:
POST
Required Capability:
Access allowed with "Create and edit notebooks" privilege
Version Introduced:
11.4

Description

The manifest 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

ParameterDetails

f

The response format. The default response format is html.

Values: html | json | pjson

Example usage

The following is a sample request URL used to access the manifest resource:

Use dark colors for code blocksCopy
1
https://organization.domain.com/context/admin/notebooks/runtimes/31dfadc5-35e0-4043-b866-a249a2bda7c0/manifest?f=pjson

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "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
    }
  ]
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.