SpatialParse / app.py
Shunfeng Zheng
Add Streamlit demo
11a5c67
raw
history blame
129 Bytes
# app.py
import streamlit as st
st.title("Spatial Parse Demo")
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)