spjall / app.py
clr's picture
Update app.py
37bee17
raw
history blame
No virus
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)