我想了解更多有关散景服务器的信息。我试图想象一下来自twitter的一些实时数据。如何使用Bokeh服务器完成这项工作?
到目前为止,我有这两个帮助链接
http://continuum.io/blog/painless_streaming_plots_w_bokeh http://bokeh.pydata.org/docs/user_guide/server.html
我无法使用Bokeh服务器绘制静态图。 我如何在此处使用此代码段作为基点?
from __future__ import print_function
import bokeh.server
import bokeh.server.start
if __name__ == "__main__":
try:
bokeh.server.run()
except KeyboardInterrupt:
bokeh.server.start.stop()
print("Shutting down bokeh-server ...")
有人可以对此有更多的了解吗?