Solshine's picture
Update app.py
3509ad1 verified
raw
history blame
241 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
from io import BytesIO
sound_file = BytesIO()
tts = gTTS('Add text-to-speech to your app', lang='en')
tts.write_to_fp(sound_file)
st.audio(sound_file)