Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AIdeaText
/
v3
like
0
Running
App
Files
Files
Community
517b859
v3
/
Test_app.py
AIdeaText
Upload 9 files
254eff8
verified
2 months ago
raw
Copy download link
history
blame
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()