Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
realvest
/
realvest-app
like
4
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
058b4ca
realvest-app
/
app.py
neobot
test secrets
058b4ca
over 1 year ago
raw
Copy download link
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"
])