File size: 385 Bytes
2f22ac0
d228bd9
2f22ac0
d228bd9
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import streamlit as st
import os


uploaded_file = st.file_uploader('Please upload your SVG')
if uploaded_file is not None:
    file_details = {"FileName":uploaded_file.name,"FileType":uploaded_file.type}
    st.write(file_details)
    with open(os.path.join("tempDir",uploaded_file.name),"wb") as f: 
      f.write(uploaded_file.getbuffer())         
    st.success("Saved File")