realvest-app / app.py
neobot's picture
test secrets
058b4ca
raw
history blame
129 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
st.write("Secret:", st.secrets["test"])