Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
nateraw
/
hello-world-streamlit
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d65c1cf
hello-world-streamlit
/
app.py
nateraw
Upload app.py with huggingface_hub
933f15b
about 3 years ago
raw
Copy download link
history
blame
Safe
154 Bytes
import
streamlit
as
st
st.title(
"Hello World"
)
text = st.text_input(
"What's your name"
)
if
text.strip() !=
""
:
st.write(
f"Hello,
{text.strip()}
!"
)