bokeh.application.handlers.code#
提供一个 Bokeh 应用程序处理器,用于通过编译和执行 Python 源代码来构建文档。
Bokeh 服务器命令行工具使用此处理器来构建基于脚本和 Notebook 运行的应用程序。
def make_doc(doc: Document):
# do work to modify the document, add plots, widgets, etc.
return doc
app = Application(FunctionHandler(make_doc))
server = Server({'/bkapp': app}, io_loop=IOLoop.current())
server.start()
- class CodeHandler(*, source: str, filename: str | PathLike[str], argv: list[str] = [], package: ModuleType | None = None)[source]#
运行修改文档的源代码
- __init__(*, source: str, filename: str | PathLike[str], argv: list[str] = [], package: ModuleType | None = None) None [source]#