Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
clr
/
spjall
like
0
Running
App
Files
Files
Community
1
58dbacb
spjall
/
app.py
clr
Update app.py
37bee17
almost 2 years ago
raw
Copy download link
history
blame
Safe
160 Bytes
import
streamlit
as
st
import
os
os.system(
'git clone https://github.com/google/REAPER/'
)
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)