Provide a Bokeh Application Handler to build up documents by compiling
and executing Python source code.
This Handler is used by the Bokeh server command line tool to build
applications that run off scripts and notebooks.
defmake_doc(doc:Document):# do work to modify the document, add plots, widgets, etc.returndocapp=Application(FunctionHandler(make_doc))server=Server({'/bkapp':app},io_loop=IOLoop.current())server.start()