当前位置: 首页 > 工具软件 > Bokeh > 使用案例 >

bokeh保存html,Bokeh服务器,简单的html页面

燕成双
2023-12-01

我有一个大的数据源,我需要在我的机器上计算并与其他用户共享,大约每5分钟更新一次。更简单的解决方案是在我的机器上安装一个bokeh服务器,他们可以连接到该服务器来查看数据。在

尝试运行bokeh服务器时,出现以下错误:RuntimeError: Failed to push document: AttributeError("'PropertyValueList' object has no attribute '_owners'",)

我想这是关于如何让它运行的问题,我从设置服务器开始:

^{pr2}$

然后我从bokeh网站编译并运行以下示例:import numpy as np

from numpy import pi

from bokeh.client import push_session

from bokeh.driving import cosine

from bokeh.plotting import figure, curdoc

x = np.linspace(0, 4*pi, 80)

y = np.sin(x)

p = figure()

r1 = p.line([0, 4*pi], [-1, 1], color="firebrick")

r2 = p.line(x, y, color="navy", line_width=4)

# open a session to keep our local document in sync with server

session = push_session(curdoc())

@cosine(w=0.03)

def update(step):

r2.data_source.data["y"] = y * step

r2.glyph.line_alpha = 1 - 0.8 * abs(step)

curdoc().add_periodic_callback(update, 50)

session.show() # open the document in a browser

session.loop_until_closed() # run forever

 类似资料: