how can a bokeh server access arguments from server_document()
问题 I have a flask app which talks to a bokeh server. I want to pass arguments to the bokeh server so that the bokeh server can use that information to display things differently. Here's my flask route, complete with how I'm attempting to pass arguments to bokeh: @app.route('/test') def test(): return render_template( 'bokeh.html', template='Flask', script=server_document( url='http://localhost:6001/test', arguments={'foo': 'bar'} )) I think I'm passing the arguments correctly but I don't know