如何使用 python 在 streamlit 应用程序中打开 atoti link?
How to open atoti link in streamlit application with python?
我正在尝试 运行 atoti link 在 streamlit 应用程序中我想用 atoti 创建一些图。
我尝试了下面的代码,但它显示了其他内容来代替 link.
new = pd.DataFrame()
new['Link'] = [session.link()]
st.dataframe(new)
st.write(new.to_html(escape=False, index=False), unsafe_allow_html=True)
输出为
Link
0 Link(_path='', _session=<atoti.session.Session object at 0x000002B700293FA0>)
其次是:
Link
Link(_path='', _session=)
预期的 link 是 http://localhost:53533
谁能帮我解决这个问题?
如文档所述here,Session.link()
仅在 JupyterLab 中可用。
您可以使用 f"http://localhost:{session.port}"
.
我正在尝试 运行 atoti link 在 streamlit 应用程序中我想用 atoti 创建一些图。 我尝试了下面的代码,但它显示了其他内容来代替 link.
new = pd.DataFrame()
new['Link'] = [session.link()]
st.dataframe(new)
st.write(new.to_html(escape=False, index=False), unsafe_allow_html=True)
输出为
Link
0 Link(_path='', _session=<atoti.session.Session object at 0x000002B700293FA0>)
其次是:
Link
Link(_path='', _session=)
预期的 link 是 http://localhost:53533
谁能帮我解决这个问题?
如文档所述here,Session.link()
仅在 JupyterLab 中可用。
您可以使用 f"http://localhost:{session.port}"
.