CVK
CVK

Reputation: 63

GUI tools for Jupyter Notebook

Is it possible to build Interactive application using Jupyter Notebook?? for example I want to a window frame with two icons for Image and Camera and I want to be call my Ipython program in it.

enter image description here

Upvotes: 3

Views: 29228

Answers (1)

Aaron Watters
Aaron Watters

Reputation: 2846

Yes. The primary way to implement rich interactions in Jupyter is to use widgets.

https://ipywidgets.readthedocs.io/en/stable/

Please see https://github.com/AaronWatters/jp_proxy_widget for an easy way to use general interactive Javascript in Jupyter notebook widgets. Also see https://github.com/AaronWatters/jp_doodle for some components built using proxy widgets that support complex visualizations with mouse interactions and animation.

Upvotes: 6

Related Questions