Streamcomunity / app.py
ServerX's picture
Create app.py
5dd0050 verified
raw
history blame
334 Bytes
import streamlit as st
st.set_page_config(page_title="Smart TV Interface", layout="wide")
st.title("Smart TV Browser")
# Visualizzazione del sito tramite iframe
st.markdown(
"""
<iframe src="https://streamingcommunity.paris/" width="100%" height="700px" style="border:none;"></iframe>
""",
unsafe_allow_html=True,
)