Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Johnometalman
/
streamlit-app
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
johnometalman
commited on
Dec 30, 2024
Commit
f0e4652
·
1 Parent(s):
b77cfae
lanzamiento de la demo app
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import streamlit as st
2
+
3
+
st.title('Demo App en Streamlit')
4
+
st.markdown('Descripción test de la app ')
5
+
6
+
x = st.slider('Selecciona un valor')
7
+
st.write(x, 'el cuadrado es ', x * x)