Spaces:
Sleeping
Sleeping
tomaseo2022
commited on
Commit
•
a3d7f20
1
Parent(s):
56b9222
Update app.py
Browse files
app.py
CHANGED
@@ -31,8 +31,9 @@ def xml_to_pdf(xml_file):
|
|
31 |
except Exception as e:
|
32 |
return f"Error al procesar el archivo: {str(e)}"
|
33 |
|
34 |
-
file_input = gr.
|
35 |
-
file_output = gr.
|
36 |
-
iface = gr.Interface(
|
37 |
|
38 |
iface.launch(share=True)
|
|
|
|
31 |
except Exception as e:
|
32 |
return f"Error al procesar el archivo: {str(e)}"
|
33 |
|
34 |
+
file_input = gr.File(label="Selecciona un archivo XML", type="file")
|
35 |
+
file_output = gr.File(label="Descargar archivo PDF", type="download")
|
36 |
+
iface = gr.Interface(xml_to_pdf, inputs=file_input, outputs=file_output)
|
37 |
|
38 |
iface.launch(share=True)
|
39 |
+
|