Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
AIdeaText/test
AIdeaText
/
test2
like
0
Running
App
Files
Files
Community
e587251
test2
/
Test_app.py
AIdeaText
Rename app.py to Test_app.py
95cd4a9
verified
3 months ago
raw
Copy download link
history
blame
Safe
187 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()