Spaces:
Building
Building
Create app.py
Browse files
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 |
+
)
|