Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
ngomez07
/
spacerStream
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ngomez07
commited on
Mar 9, 2025
Commit
0ed3b2c
·
1 Parent(s):
ac736cf
Cambio en 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("Este es un demo")
4
+
st.markdown("esta es mi descripcion")
5
+
6
+
x = st.slider("Selecciona un valor")
7
+
st.write(x, "el cuadrado es", x*x)