Python Bokeh: remove toolbar from chart
On any Bokeh plot object you can set:
p.toolbar_location = None
If you want to remove the logo and the toolbar you can do:
p.toolbar.logo = None
p.toolbar_location = None
Hope this resolves your problem