sh20raj commited on
Commit
bab5260
·
1 Parent(s): 68c43d2

chore: Add .gitignore file and requirements.txt

Browse files
Files changed (3) hide show
  1. .gitignore +1 -0
  2. app.py +4 -0
  3. requirements.txt +3 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ venv
app.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ x = st.slider('Select a value')
4
+ st.write(x, 'squared is', x * x)
requirements.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+
2
+
3
+