我正在尝试在 streamlit 应用程序中运行 atoti 链接,我想在其中使用 atoti 创建一些图。我尝试了下面的代码,但它显示了其他内容来代替链接。
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=)
预期的链接是http://localhost:53533
谁能帮我这个?