Jesus Andres Correal Ortiz commited on
Commit ·
86c0a21
1
Parent(s): 19072cf
Initial commit
Browse files- .gitignore +1 -0
- app.py +7 -0
- requeriments.txt +0 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
.venv/
|
app.py
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
st.title('Hello, Streamlit!')
|
| 4 |
+
st.write('This is a simple Streamlit app.')
|
| 5 |
+
|
| 6 |
+
if st.button('Say hello'):
|
| 7 |
+
st.write('Hello, World!')
|
requeriments.txt
ADDED
|
File without changes
|