Spaces:
Running
Running
import streamlit as st | |
import os | |
from animationPipeline import animate_logo | |
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) | |
if not os.path.exists('tempDir'): | |
os.mkdir('tempDir') | |
with open(os.path.join("tempDir",uploaded_file.name),"wb") as f: | |
f.write(uploaded_file.getbuffer()) | |
st.success("Saved File") | |
animate_logo(os.path.join('tempDir', uploaded_file.name)) | |
st.download_button('Download animated SVG', os.path.join('tempDir', uploaded_file.name)) | |