April 2018
Beginner
238 pages
7h 13m
English
We are using many bokeh libraries. The most important for this example is the widgets set.
Since we are running this in a notebook, we direct the output to the Notebook with output_notebook().
The next few lines are fairly boilerplate for creating a graphic of interest.
Then, we create the button and the text field. Both are added to a widgets object. Then, the widgets object and the graphic are placed into a bokeh layout object. There are several schemes available for layouts.
Finally, a show, passing the layout to the show routine.
You can also add handlers for dealing with the user clicking on a button or changing a value in a field to update your graphic dynamically. The handlers would be standard Python functions, def ...