Spaces:
Runtime error
Runtime error
Commit
·
526afa6
1
Parent(s):
880ad9a
added streamlit
Browse files- app.py +8 -0
- requirements.txt +1 -0
app.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
# Title of the application
|
| 4 |
+
st.title('Hello, World!')
|
| 5 |
+
|
| 6 |
+
# A button that when clicked will show a message
|
| 7 |
+
if st.button('Say hello'):
|
| 8 |
+
st.write('Hello from Streamlit!')
|
requirements.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
streamlit
|