Back to Jupyterlab

json-extension

packages/json-extension/README.md

4.6.0a5805 B
Original Source

json-extension

A JupyterLab extension for rendering JSON as a tree

This extension is in the official JupyterLab distribution.

Usage

To render JSON-able dict or list in IPython:

python
from IPython.display import JSON

JSON({
    "string": "string",
    "array": [1, 2, 3],
    "bool": True,
    "object": {
        "foo": "bar"
    }
})

To render a fully expanded tree:

python
JSON({
    "string": "string",
    "array": [1, 2, 3],
    "bool": True,
    "object": {
        "foo": "bar"
    }
}, expanded=True)

To render a .json file, simply open it:

Development

See the JupyterLab Contributor Documentation.