我能把Streamlit和Django整合起来吗?我试过了,但不知道该呈现什么?
我在django应用程序中使用了这段代码
发布于 2022-03-18 23:11:32
一个简单的想法是单独运行Streamlit并通过IFrame集成到您的应用程序中。例如,如果您在http://localhost:8501/上运行streamlit,您可以将它包含在您的HTML中:
<iframe src="http://localhost:8501/" name="iframe_a" height="400px" width="100%" title="Iframe Example"></iframe>https://stackoverflow.com/questions/71201260
复制相似问题