Skip to main content

JupyterLab extension adding data visualisation widgets.

Project description

Jupyter ProtoPype: jppype

PyPI version

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
  • 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jppype-0.1.1.1.tar.gz (301.4 kB view hashes)

Uploaded Source

Built Distribution

jppype-0.1.1.1-py3-none-any.whl (400.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page