Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -2,9 +2,17 @@ import streamlit as st
|
|
2 |
from PIL import Image
|
3 |
image = Image.open("rai_raise_main_badge_pos_102.png")
|
4 |
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
video_file = open('raii.mp4', 'rb')
|
8 |
video_bytes = video_file.read()
|
9 |
-
|
10 |
st.video(video_bytes)
|
|
|
2 |
from PIL import Image
|
3 |
image = Image.open("rai_raise_main_badge_pos_102.png")
|
4 |
|
5 |
+
col1, col2, col3 = st.columns(3)
|
6 |
+
|
7 |
+
with col1:
|
8 |
+
st.write(' ')
|
9 |
+
|
10 |
+
with col2:
|
11 |
+
st.image(image, width = 300)
|
12 |
+
|
13 |
+
with col3:
|
14 |
+
st.write(' ')
|
15 |
+
|
16 |
video_file = open('raii.mp4', 'rb')
|
17 |
video_bytes = video_file.read()
|
|
|
18 |
st.video(video_bytes)
|