Answers for "streamlit change tab name"

0

streamlit change tab name

st.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)
Posted by: Guest on July-22-2021

Python Answers by Framework

Browse Popular Code Answers by Language