Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
AIdeaText
/
v3
like
0
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
main
v3
/
Test_app.py
AIdeaText
Upload 9 files
254eff8
verified
almost 2 years ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
Safe
194 Bytes
import
streamlit
as
st
def
main
():
st.title(
"Test de Streamlit"
)
st.write(
"Si puedes ver esto, Streamlit está funcionando correctamente."
)
if
__name__ ==
"__main__"
:
main()