Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Maham930
/
check_again
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Maham930
commited on
Sep 30, 2025
Commit
bb9be8b
·
verified
·
1 Parent(s):
017a188
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
CHANGED
Viewed
@@ -0,0 +1,7 @@
1
+
import streamlit as st
2
+
3
+
st.title("🚀 Streamlit App (converted from Gradio)")
4
+
5
+
name = st.text_input("Enter your name:")
6
+
if st.button("Say Hello"):
7
+
st.success(f"Hello {name}!")