Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -4,14 +4,13 @@ import streamlit as st
|
|
4 |
st.title("Pikatu Therapy")
|
5 |
|
6 |
# HTML νμΌ 1 νμ
|
7 |
-
st.header("Page 1")
|
8 |
with open("page1.html", "r", encoding="utf-8") as file:
|
9 |
html1 = file.read()
|
10 |
st.components.v1.html(html1, height=600)
|
11 |
|
12 |
-
# HTML νμΌ 2 νμ
|
13 |
-
st.header("Page 2")
|
14 |
-
with open("page2.html", "r", encoding="utf-8") as file:
|
15 |
-
|
16 |
-
st.components.v1.html(html2, height=600)
|
17 |
|
|
|
4 |
st.title("Pikatu Therapy")
|
5 |
|
6 |
# HTML νμΌ 1 νμ
|
|
|
7 |
with open("page1.html", "r", encoding="utf-8") as file:
|
8 |
html1 = file.read()
|
9 |
st.components.v1.html(html1, height=600)
|
10 |
|
11 |
+
# # HTML νμΌ 2 νμ
|
12 |
+
# st.header("Page 2")
|
13 |
+
# with open("page2.html", "r", encoding="utf-8") as file:
|
14 |
+
# html2 = file.read()
|
15 |
+
# st.components.v1.html(html2, height=600)
|
16 |
|