How do I display a website in the same web page?
I am currently using webbrowser
library to open the website in a new tab. I am interested in knowing how do I view my website in the same streamlit page.
Thanks.
How do I display a website in the same web page?
I am currently using webbrowser
library to open the website in a new tab. I am interested in knowing how do I view my website in the same streamlit page.
Thanks.
st.write(
f'<iframe src="http://localhost:8501/"></iframe>',
unsafe_allow_html=True,
)