mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
24 lines
518 B
Python
24 lines
518 B
Python
from zipfile import ZipFile
|
|
|
|
import gradio as gr
|
|
|
|
|
|
def zip_to_json(file_obj):
|
|
files = []
|
|
with ZipFile(file_obj.name) as zfile:
|
|
for zinfo in zfile.infolist():
|
|
files.append(
|
|
{
|
|
"name": zinfo.filename,
|
|
"file_size": zinfo.file_size,
|
|
"compressed_size": zinfo.compress_size,
|
|
}
|
|
)
|
|
return files
|
|
|
|
|
|
demo = gr.Interface(zip_to_json, "file", "json")
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|