litbee / app.py
freemt
first commit
ca97d48
raw
history blame
267 Bytes
import streamlit as st
from install import install
# install("logzero")
from logzero import logger
logger.info("streamlit version: %s", st.__version__)
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
st.write(" streamlit version", st.__version__)