yeon commited on
Commit
7382677
1 Parent(s): dfbc6dd
Files changed (2) hide show
  1. app.py +8 -0
  2. requirements.txt +1 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.set_page_config(
4
+ page_title="Streamlit app",
5
+ layout = "wide" #layout = "centered" : 이건 가운데로 몰려서 나옴
6
+ )
7
+
8
+ st.header("Hello, world!")
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ streamlit