Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
taihan
/
intelloid
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
intelloid
/
app.py
taihan
Add application file
6f0e8e2
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
124 Bytes
import
streamlit
as
st
st.title(
"Hello, Streamlit!"
)
name = st.text_input(
"What's your name?"
)
st.write(
f"Hello,
{name}
!"
)