rhea2809 commited on
Commit
3d5e4e5
·
1 Parent(s): 64902b2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -3
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
- title_container = st.container()
6
- title_container.image(image, width = 300)
 
 
 
 
 
 
 
 
 
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)