Ipywatch

Widget to watch comm events


source

WidgetStateHistoryListener

 WidgetStateHistoryListener (history_size:int=5, on_state_change:Optional[
                             Callable[[ipywidgets.widgets.widget.Widget,An
                             y],NoneType]]=None)

Initialize self. See help(type(self)) for accurate signature.

/opt/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/site-packages/fastcore/docscrape.py:225: UserWarning: Unknown section Examples
  else: warn(msg)

source

Ipywatch

 Ipywatch (width:str='100%', height:str='400px', history_size:int=5,
           **kwargs)

Displays multiple widgets horizontally using the flexible box model.

Usage example

ipywatch = Ipywatch(width='100%', height='200px')
slider = ipywidgets.IntSlider(value=7, min=0, max=10, step=1, description='Test Slider:')
HBox([slider, ipywatch])