Spaces:
Paused
Paused
Daniel Gil-U Fuhge commited on
Commit ·
dbc060a
1
Parent(s): 217b3d5
change app
Browse files
app.py
CHANGED
|
@@ -13,6 +13,7 @@ if uploaded_file is not None:
|
|
| 13 |
f.write(uploaded_file.getbuffer())
|
| 14 |
st.success("Saved File")
|
| 15 |
path = os.path.join('tempDir', uploaded_file.name)
|
|
|
|
| 16 |
animate_logo(path)
|
| 17 |
st.download_button('Download animated SVG', os.path.join('tempDir', uploaded_file.name))
|
| 18 |
|
|
|
|
| 13 |
f.write(uploaded_file.getbuffer())
|
| 14 |
st.success("Saved File")
|
| 15 |
path = os.path.join('tempDir', uploaded_file.name)
|
| 16 |
+
st.write(path)
|
| 17 |
animate_logo(path)
|
| 18 |
st.download_button('Download animated SVG', os.path.join('tempDir', uploaded_file.name))
|
| 19 |
|