apisecrettest / app.py
asitts's picture
Update app.py
fbe0ab6
raw
history blame contribute delete
169 Bytes
import streamlit as st
import os
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
st.write('test')
api_key = os.environ['apitest']
st.write(api_key)