Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,6 +1,12 @@
|
|
| 1 |
#app.py
|
| 2 |
|
| 3 |
-
import os
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
Streamlit page configuration
|
| 6 |
|
|
|
|
| 1 |
#app.py
|
| 2 |
|
| 3 |
+
import os
|
| 4 |
+
import io
|
| 5 |
+
import zipfile
|
| 6 |
+
import tempfile
|
| 7 |
+
from werkzeug.utils import secure_filename
|
| 8 |
+
import streamlit as st
|
| 9 |
+
from api import ALLOWED_EXTENSIONS, allowed_file, convert_path
|
| 10 |
|
| 11 |
Streamlit page configuration
|
| 12 |
|