Hi I am developing a bokeh application to perform some analysis. I want to get the URL parameters from the server so I can decide which data to render in the application.
Currently I can route URLs like http://127.0.0.1:5006/bokeh/videos/?hello=1
with the following configuration, but is there a way I can get the GET parameters {'hello':'1'}
from the application?
@bokeh_app.route("/bokeh/analysis/")
@object_page("analysis")
def make_analysis():
app = AnalysisApp.create()
return app