rhea2809's picture
Update app.py
3d5e4e5
raw
history blame
329 Bytes
import streamlit as st
from PIL import Image
image = Image.open("rai_raise_main_badge_pos_102.png")
col1, col2, col3 = st.columns(3)
with col1:
st.write(' ')
with col2:
st.image(image, width = 300)
with col3:
st.write(' ')
video_file = open('raii.mp4', 'rb')
video_bytes = video_file.read()
st.video(video_bytes)