gradio/demo/zip_two_files/run.py

24 lines
433 B
Python
Raw Normal View History

2020-08-20 19:57:07 +08:00
from zipfile import ZipFile
import gradio as gr
2020-08-20 19:57:07 +08:00
def zip_two_files(file1, file2):
with ZipFile("tmp.zip", "w") as zipObj:
2020-08-20 19:57:07 +08:00
zipObj.write(file1.name, "file1")
zipObj.write(file2.name, "file2")
return "tmp.zip"
2020-11-11 22:15:53 +08:00
iface = gr.Interface(
zip_two_files,
["file", "file"],
"file",
examples=[
["files/titanic.csv", "files/titanic.csv"],
],
)
2020-08-28 23:56:03 +08:00
2020-11-11 22:15:53 +08:00
if __name__ == "__main__":
iface.launch()