Reputation: 427
I have a notebook that given input from ipywidget sliders, does some calculations and generates a graph. Is there a way I can create a "read-only" version of this interactive notebook, essentially one in which the user can interact through the sliders but nothing else (like code entry)? Thanks!
Upvotes: 2
Views: 1008
Reputation: 15941
If you export the notebook to HTML, it will be a HTML representation of the notebook that isn't editable, and ipywidgets
supports export to HTML. For example: http://jupyter.org/widgets
Upvotes: 1