生成可脱机工作的Bokeh html文件

时间:2018-08-13 13:59:47

标签: python html bokeh offline

过去, bokeh 似乎具有生成脱机工作的html文件的选项。这是一个较旧的讨论,显示了如何执行此操作: https://groups.google.com/a/continuum.io/forum/#!topic/bokeh/Ts2P24YR0VU

使用该行:

output_file(file_path, mode='inline') 

但是,这似乎不适用于我正在使用的{strong> bokeh 版本0.12.10

当我尝试添加mode = 'inline'时,我得到了:

TypeError: file_html() got an unexpected keyword argument 'mode'

看看新的dcumentaion,这很有意义: https://bokeh.pydata.org/en/latest/docs/reference/embed.html#bokeh.embed.file_html

是否可以举一个简短的示例,说明如何在不运行本地 bokeh 服务器的情况下离线查看html文件?

希望该解决方案像以前一样简单。

Jacob

1 个答案:

答案 0 :(得分:0)

file_html函数接受一个resources参数,该参数必须是实际的Resources对象(而不是字符串)。为了方便起见,有一些预配置的资源对象。特别是,bokeh.resources.INLINE对象可以传递给file_html以使用内联资源。