Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
# Streamlit App
|
| 4 |
+
st.title("Hello, Hugging Face!")
|
| 5 |
+
st.write("This is a simple Streamlit app deployed on Hugging Face Spaces.")
|
| 6 |
+
|
| 7 |
+
name = st.text_input("Enter your name:")
|
| 8 |
+
if name:
|
| 9 |
+
st.write(f"Hello, {name}!")
|