ServerX commited on
Commit
5dd0050
·
verified ·
1 Parent(s): adeb8b4

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.set_page_config(page_title="Smart TV Interface", layout="wide")
4
+ st.title("Smart TV Browser")
5
+
6
+ # Visualizzazione del sito tramite iframe
7
+ st.markdown(
8
+ """
9
+ <iframe src="https://streamingcommunity.paris/" width="100%" height="700px" style="border:none;"></iframe>
10
+ """,
11
+ unsafe_allow_html=True,
12
+ )