minhwai commited on
Commit
f693b6e
โ€ข
1 Parent(s): 8a71fed

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -0
app.py ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ # ์ œ๋ชฉ
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
+ html2 = file.read()
16
+ st.components.v1.html(html2, height=600)
17
+