|
пре 4 година | |
---|---|---|
.. | ||
src | пре 4 година | |
style | пре 4 година | |
README.md | пре 6 година | |
package.json | пре 4 година | |
tsconfig.json | пре 4 година | |
typedoc.json | пре 4 година |
A JupyterLab extension for rendering JSON as a tree
To render JSON-able dict or list in IPython:
from IPython.display import JSON
JSON({
"string": "string",
"array": [1, 2, 3],
"bool": True,
"object": {
"foo": "bar"
}
})
To render a fully expanded tree:
JSON({
"string": "string",
"array": [1, 2, 3],
"bool": True,
"object": {
"foo": "bar"
}
}, expanded=True)
To render a .json
file, simply open it:
See the JupyterLab Contributor Documentation.