JupyterLab extension adding data visualisation widgets.
Project description
Jupyter ProtoPype: jppype
Jupyter extensions adding ipywidgets specialized for data-view. It is designed as a frontend for ProtoPype (to be released) but can be used as a standalone.
The widgets work both with Jupyter Notebook and Jupyter Lab.
Installation
To install use pip:
pip install jppype
Usage
Import jppype in your notebook and use the widgets:
import jppype as jpp
2D image viewer
viewer = jpp.View2D()
# Supported image formats: numpy array, torch tensor
image = np.random.rand(100, 100)
viewer.add_image(image)
viewer
Features coming...
-
Widgets
- 2D image viewer
- Color images layer
- Label layer
- Graph layer
- Vector Field layer
- Table viewer
- 2D image viewer
-
Python interactivity
- Add/Update/Remove layers
- Callback on click
- Async request of user selection (point, area, node, edge...)
Development Installation
Pull the latest version of the repository
git clone https://github.com/gabriel-lepetitaimon/jppype.git
cd jppype
For a development installation (requires Node.js and Yarn version 1):
conda create -n jppype python=3.10
conda install -c conda-forge yarn nodejs
Download the npm dependencies:
cd ts-src
npm install
cd ...
Upgrade jupyter-lab to version 4.0.0 if necessary:
pip install -U jupyterlab
Install the python package and the extensions in development mode (this stage may take a while as it will build the jupyterlab extension):
pip install -e .[dev]
jupyter nbextension install --py --symlink --overwrite --sys-prefix jppype
jupyter nbextension enable --py --sys-prefix jppype
If you which to develop for JupyterLab, also run the command:
jupyter labextension develop --overwrite jppype
Then you need to rebuild the JS when you make a code change:
cd ts-src
jlpm clean
jlpm build
or automatically rebuild when a file changes:
cd ts-src
npm watch
You then need to refresh the JupyterLab page when your javascript changes.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file jppype-0.1.1rc1.tar.gz
.
File metadata
- Download URL: jppype-0.1.1rc1.tar.gz
- Upload date:
- Size: 301.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2ef44ee0ae1e86d42c7038bf80e67e37de3545cbd54f62beabd6c08c7cafe11 |
|
MD5 | b85cd678d1619c31c2e93c2b5a73ae1f |
|
BLAKE2b-256 | 9989a2543e13e026c1bf7d10ad857a2a1d45a80aef12af16e6bd3479f4f4eae9 |
Provenance
File details
Details for the file jppype-0.1.1rc1-py3-none-any.whl
.
File metadata
- Download URL: jppype-0.1.1rc1-py3-none-any.whl
- Upload date:
- Size: 400.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ee30ddb110b0a50184b48602533c9d2350215a81f1c966eedb466d62a131491 |
|
MD5 | afad765479bbd80f3f352e9166aac598 |
|
BLAKE2b-256 | 0a21dd1c78a7466b3ac3e2bbf93e03963e1525b2c0fc76913fdebd113c7d8e9e |