0.4.0 • Published 5 years ago

sidepanel v0.4.0

Weekly downloads
5
License
BSD-3-Clause
Repository
github
Last release
5 years ago

Sidepanel

A fork of jupyterlab/Sidecar with an additional Sidepanel

Installation

pip install sidepanel
jupyter labextension install sidepanel

Usage

The sidepanel widget is used as a context manager, just like ipywidgets' output widget.

from sidepanel import Sidepanel
from ipywidgets import IntSlider

sp = Sidepanel(title='Sidecar Output')
sl = IntSlider(description='Some slider')
with sp:
    display(sl)