Update app.py
Browse files
app.py
CHANGED
|
@@ -2,16 +2,24 @@ import streamlit as st
|
|
| 2 |
|
| 3 |
# Define URLs
|
| 4 |
urls = [
|
| 5 |
-
"https://
|
| 6 |
-
"https://
|
| 7 |
-
"https://
|
| 8 |
-
"https://
|
| 9 |
]
|
| 10 |
|
| 11 |
# Create a 4x4 grid of iframes with no gaps
|
| 12 |
-
|
| 13 |
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
# Define URLs
|
| 4 |
urls = [
|
| 5 |
+
"https://huggingface.co/spaces/jeeva780/Screener_1Min/tree/main",
|
| 6 |
+
"https://huggingface.co/spaces/jeeva780/Screener_5Min/tree/main",
|
| 7 |
+
"https://huggingface.co/spaces/jeeva780/Screener_15Min/tree/main",
|
| 8 |
+
"https://huggingface.co/spaces/jeeva780/Screener_30Min/tree/main"
|
| 9 |
]
|
| 10 |
|
| 11 |
# Create a 4x4 grid of iframes with no gaps
|
| 12 |
+
col1,col2 = st.columns(2,gap ="small")
|
| 13 |
|
| 14 |
+
with col1:
|
| 15 |
+
iframe_code = f'<iframe src="{urls[1]}" width="100%" height="400" style="border:0;"></iframe>'
|
| 16 |
+
st.markdown(iframe_code, unsafe_allow_html=True)
|
| 17 |
+
with col1:
|
| 18 |
+
iframe_code = f'<iframe src="{urls[2]}" width="100%" height="400" style="border:0;"></iframe>'
|
| 19 |
+
st.markdown(iframe_code, unsafe_allow_html=True)
|
| 20 |
+
with col1:
|
| 21 |
+
iframe_code = f'<iframe src="{urls[3]}" width="100%" height="400" style="border:0;"></iframe>'
|
| 22 |
+
st.markdown(iframe_code, unsafe_allow_html=True)
|
| 23 |
+
with col1:
|
| 24 |
+
iframe_code = f'<iframe src="{urls[4]}" width="100%" height="400" style="border:0;"></iframe>'
|
| 25 |
+
st.markdown(iframe_code, unsafe_allow_html=True)
|