Miguel Angel commited on
Commit
78f0864
·
1 Parent(s): 454a85c

main | Init my repo with streamlit first changes

Browse files
Files changed (3) hide show
  1. .gitignore +1 -0
  2. app.py +7 -0
  3. requirements.txt +1 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ venv
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.title("this is my demo")
4
+ st.markdown("## this is my description")
5
+
6
+ x = st.slider('Select a value')
7
+ st.write(x, 'squared is', x * x)
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ streamlit==1.25.0