📜  在 streamlit 中设置页面标题名称和网站图标 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:51.091000             🧑  作者: Mango

代码示例1
st.beta_set_page_config(page_title='your_title', page_icon = favicon, layout = 'wide', initial_sidebar_state = 'auto')
# favicon being an object of the same kind as the one you should provide st.image() with (ie. a PIL array for example) or a string (url or local file path)