Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
from PIL import Image
|
3 |
+
import time
|
4 |
+
|
5 |
+
# Title of the Streamlit app
|
6 |
+
st.title("Streamlit Testing App")
|
7 |
+
|
8 |
+
# Write a description
|
9 |
+
st.write("This app tests various Streamlit elements like file uploader, image display, and audio playback.")
|
10 |
+
|
11 |
+
# File uploader for image
|
12 |
+
uploaded_file = st.file_uploader("Upload an image", type=["png", "jpg", "jpeg"])
|
13 |
+
|
14 |
+
if uploaded_file is not None:
|
15 |
+
# Display the uploaded image
|
16 |
+
image = Image.open(uploaded_file)
|
17 |
+
st.image(image, caption="Uploaded Image", use_column_width=True)
|
18 |
+
|
19 |
+
# Display an audio file with a spinner effect
|
20 |
+
st.write("Playing audio...")
|
21 |
+
with st.spinner("Loading audio..."):
|
22 |
+
time.sleep(2) # Simulating a short delay
|
23 |
+
st.audio("kids_playing_audio.wav")
|