File size: 657 Bytes
			
			a5e8baf  | 
								1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24  | 
								import os
from zipfile import ZipFile
import gradio as gr
def zip_files(files):
    with ZipFile("tmp.zip", "w") as zipObj:
        for idx, file in enumerate(files):
            zipObj.write(file.name, file.name.split("/")[-1])
    return "tmp.zip"
demo = gr.Interface(
    zip_files,
    gr.File(file_count="multiple", file_types=["text", ".json", ".csv"]),
    "file",
    examples=[[[os.path.join(os.path.dirname(__file__),"files/titanic.csv"),
    os.path.join(os.path.dirname(__file__),"files/titanic.csv"),
    os.path.join(os.path.dirname(__file__),"files/titanic.csv")]]],
    cache_examples=True
)
if __name__ == "__main__":
    demo.launch()
 |