Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
IPN
/
streamlit_demo
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
espejelomar
commited on
Apr 1, 2022
Commit
4f1ff29
·
1 Parent(s):
3ffabe2
Agregar demo
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import streamlit as st
2
+
3
+
st.title('This is a title')
4
+
5
+
x = st.slider('Select a value')
6
+
st.write(x, 'squared is', x * x)
7
+
8
+
st.markdown('Este es un demo de cómo funciona streamlit!')