Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Danielrahmai1991
/
apidemo
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Danielrahmai1991
commited on
Sep 15, 2024
Commit
be7d622
·
verified
·
1 Parent(s):
ed9cee9
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import streamlit as st
2
+
3
+
st.title("Hello World App")
4
+
name = st.text_input("Enter your name:")
5
+
if st.button("Greet"):
6
+
st.write(f"Hello, {name}!")