Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jupyter-widgets-contrib/ipytree
A Tree Widget using Jupyter-widgets protocol and jsTree
https://github.com/jupyter-widgets-contrib/ipytree
Last synced: 20 days ago
JSON representation
A Tree Widget using Jupyter-widgets protocol and jsTree
- Host: GitHub
- URL: https://github.com/jupyter-widgets-contrib/ipytree
- Owner: jupyter-widgets-contrib
- License: mit
- Created: 2018-09-15T13:17:27.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-25T14:25:25.000Z (about 1 year ago)
- Last Synced: 2024-05-23T02:31:04.634Z (8 months ago)
- Language: CSS
- Size: 757 KB
- Stars: 127
- Watchers: 9
- Forks: 30
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-jupyter-resources - GitHub - 48% open · ⏱️ 23.08.2022): (交互式小部件和可视化)
README
ipytree
=======A Tree Widget using Jupyter-widgets protocol and [jsTree](https://www.jstree.com/)
Try it out using binder: [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/QuantStack/ipytree/stable?filepath=examples)
![Tree Screencast](./ipytree.gif)
Installation
------------With conda:
```
$ conda install -c conda-forge ipytree
```With pip:
```
$ pip install ipytree
```If you use JupyterLab<=2:
```
$ jupyter labextension install @jupyter-widgets/jupyterlab-manager ipytree
```If you have notebook 5.2 or below, you also need to execute:
```
$ jupyter nbextension enable --py --sys-prefix ipytree
```For a development installation (requires yarn and JupyterLab 3),
```
$ git clone https://github.com/QuantStack/ipytree.git
$ cd ipytree
$ pip install -e .
$ jupyter nbextension install --py --symlink --sys-prefix ipytree
$ jupyter nbextension enable --py --sys-prefix ipytree
```