Update app.py
Browse files
app.py
CHANGED
@@ -2,6 +2,7 @@ import streamlit as st
|
|
2 |
import os
|
3 |
import glob
|
4 |
import zipfile
|
|
|
5 |
|
6 |
def extract_zip(zip_path, extract_to="extracted_images"):
|
7 |
with zipfile.ZipFile(zip_path, 'r') as zip_ref:
|
|
|
2 |
import os
|
3 |
import glob
|
4 |
import zipfile
|
5 |
+
from urllib.parse import quote
|
6 |
|
7 |
def extract_zip(zip_path, extract_to="extracted_images"):
|
8 |
with zipfile.ZipFile(zip_path, 'r') as zip_ref:
|