bokeh.client.util#

bokeh.client 使用的内部实用程序函数

server_url_for_websocket_url(url: str) str[source]#

将 Bokeh 服务器的 ws(s) URL 转换为 websocket 端点的相应 http(s) URL。

参数:

url (str) – 以 /ws 结尾的 ws(s) URL

返回值:

相应的 http(s) URL。

返回类型:

str

引发:

ValueError – 如果输入 URL 格式不正确。

websocket_url_for_server_url(url: str) str[source]#

将 Bokeh 服务器 websocket 端点的 http(s) URL 转换为相应的 ws(s) URL

参数:

url (str) – http(s) URL

返回值:

/ws 结尾的相应 ws(s) URL

返回类型:

str

引发:

ValueError – 如果输入 URL 格式不正确。