I am looking for a way to call the python function of my Bokeh server application from arbitrary Javascript. I want to write custom widgets using only HTML / Javascript and use them to interact with the Bokeh application. I know that you can expand bokeh . Is this the only way to go? For quick prototyping, I think it would be nice to just use a connection to a web server to send requests to the application, something like this line:
Bokeh.call('my_python_func', arg1, arg2)
source
share