Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
osaaso
/
stream1
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
stream1
/
app.py
osaaso
Update app.py
8f56503
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
197 Bytes
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)
#exec(open("https://raw.githubusercontent.com/streamlit/demo-uber-nyc-pickups/main/streamlit_app.py").read())