Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AccelerationConsortium
/
openflexure-microscope
like
2
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
bd61f3f
openflexure-microscope
/
app.py
sgbaird
add app.py (basic starter tutorial)
bd61f3f
over 1 year ago
raw
Copy download link
history
blame
Safe
89 Bytes
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)