rhea2809 commited on
Commit
f6df57e
·
1 Parent(s): 49b812f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -13
app.py CHANGED
@@ -1,18 +1,10 @@
1
  import streamlit as st
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)
 
 
 
 
1
  import streamlit as st
2
  from PIL import Image
 
 
 
 
 
 
 
 
 
 
 
 
3
 
4
+ image = Image.open("rai_raise_main_badge_pos_102.png")
5
  video_file = open('raii.mp4', 'rb')
6
  video_bytes = video_file.read()
7
+
8
+ title_container = st.container()
9
+ title_container.image(image, width = 300)
10
+ title_container.video(video_bytes)