ajitrajasekharan's picture
Update app.py
9214c84
raw
history blame
309 Bytes
import PIL
from PIL import ImageDraw
import streamlit as st
uploaded_file = st.file_uploader("Upload Files",type=['png','jpeg'])
if uploaded_file is not None:
file_details = {"FileName":uploaded_file.name,"FileType":uploaded_file.type,"FileSize":uploaded_file.size}
st.write(file_details)