Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -8,34 +8,35 @@ import numpy as np
|
|
8 |
import zipfile
|
9 |
|
10 |
|
11 |
-
# Funzione per estrarre
|
12 |
def extract_zip(file):
|
13 |
-
#
|
14 |
if not zipfile.is_zipfile(file.name):
|
15 |
return "Errore: Il file caricato non è uno ZIP valido."
|
16 |
|
17 |
-
#
|
18 |
extraction_dir = "./extracted_files"
|
19 |
os.makedirs(extraction_dir, exist_ok=True)
|
20 |
|
21 |
-
#
|
22 |
with zipfile.ZipFile(file.name, 'r') as zip_ref:
|
23 |
zip_ref.extractall(extraction_dir)
|
24 |
|
25 |
-
#
|
26 |
extracted_files = os.listdir(extraction_dir)
|
27 |
-
return f"File estratti
|
28 |
|
29 |
# Interfaccia Gradio
|
30 |
interface = gr.Interface(
|
31 |
fn=extract_zip,
|
32 |
inputs=gr.File(label="Carica il file ZIP"),
|
33 |
outputs="text",
|
34 |
-
title="Estrattore
|
35 |
-
description="Carica un file ZIP
|
36 |
)
|
37 |
|
38 |
-
# Avvia l'applicazione
|
39 |
if __name__ == "__main__":
|
40 |
interface.launch()
|
41 |
|
|
|
|
8 |
import zipfile
|
9 |
|
10 |
|
11 |
+
# Funzione per estrarre ed elaborare un file ZIP
|
12 |
def extract_zip(file):
|
13 |
+
# Controllo se il file è valido
|
14 |
if not zipfile.is_zipfile(file.name):
|
15 |
return "Errore: Il file caricato non è uno ZIP valido."
|
16 |
|
17 |
+
# Percorso di estrazione
|
18 |
extraction_dir = "./extracted_files"
|
19 |
os.makedirs(extraction_dir, exist_ok=True)
|
20 |
|
21 |
+
# Estrarre il contenuto del file ZIP
|
22 |
with zipfile.ZipFile(file.name, 'r') as zip_ref:
|
23 |
zip_ref.extractall(extraction_dir)
|
24 |
|
25 |
+
# Elenco dei file estratti
|
26 |
extracted_files = os.listdir(extraction_dir)
|
27 |
+
return f"File estratti in '{extraction_dir}':\n" + "\n".join(extracted_files)
|
28 |
|
29 |
# Interfaccia Gradio
|
30 |
interface = gr.Interface(
|
31 |
fn=extract_zip,
|
32 |
inputs=gr.File(label="Carica il file ZIP"),
|
33 |
outputs="text",
|
34 |
+
title="Estrattore ZIP",
|
35 |
+
description="Carica un file ZIP. Verrà estratto in una directory sul server."
|
36 |
)
|
37 |
|
38 |
+
# Avvia l'applicazione
|
39 |
if __name__ == "__main__":
|
40 |
interface.launch()
|
41 |
|
42 |
+
|