当前位置:   article > 正文

如何利用 streamlit 產生多個頁面_streamlit page类

streamlit page类

1.主程式如下 ,app.py

import app1
import app2
import streamlit as st
PAGES = {"範例一": app1,"範例二": app2}
st.sidebar.title('Navigation')
selection = st.sidebar.radio("Go to", list(PAGES.keys()))
page = PAGES[selection]
page.app()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

2.產生另外兩個 py檔案 app1, app2

import streamlit as st
def app():
    st.title('APP1')
    st.write('Welcome to app1')
  • 1
  • 2
  • 3
  • 4

import streamlit as st
def app():
st.title(‘APP2’)
st.write(‘Welcome to app2’)

3.呈現畫面如下
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/175123
推荐阅读
相关标签
  

闽ICP备14008679号