Spaces:
Sleeping
Sleeping
import streamlit as st | |
st.audio("cat-purr.mp3", format="audio/mpeg", loop=True) | |
add_selectbox = st.sidebar.selectbox( | |
'How would you like to be contacted?', | |
('Email', 'Home phone', 'Mobile phone') | |
) | |
# Add a slider to the sidebar: | |
add_slider = st.sidebar.slider( | |
'Select a range of values', | |
0.0, 100.0, (25.0, 75.0) | |
) |