Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
arcolife
/
linked
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
linked
/
app
/
main.py
Archit Sharma
init streamlit hello world
4377399
unverified
almost 3 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
120 Bytes
# app/main.py
import
streamlit
as
st
def
main
():
st.title(
"Hello, World!"
)
if
__name__ ==
"__main__"
:
main()