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...
nateraw
commited on
Oct 17, 2022
Commit
933f15b
·
1 Parent(s):
6dea00f
Upload app.py with huggingface_hub
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import streamlit as st
2
+
3
+
st.title("Hello World")
4
+
5
+
text = st.text_input("What's your name")
6
+
7
+
if text.strip() != "":
8
+
st.write(f"Hello, {text.strip()}!")