aliabd HF staff commited on
Commit
34630d7
·
1 Parent(s): a8de8b1

Upload with huggingface_hub

Browse files
Files changed (5) hide show
  1. README.md +6 -7
  2. __pycache__/run.cpython-36.pyc +0 -0
  3. requirements.txt +1 -0
  4. run.py +23 -0
  5. screenshot.png +0 -0
README.md CHANGED
@@ -1,12 +1,11 @@
 
1
  ---
2
- title: Zip To Json Main
3
- emoji: 🐠
4
- colorFrom: red
5
- colorTo: red
6
  sdk: gradio
7
  sdk_version: 3.6
8
- app_file: app.py
9
  pinned: false
10
  ---
11
-
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
+
2
  ---
3
+ title: zip_to_json_main
4
+ emoji: 🔥
5
+ colorFrom: indigo
6
+ colorTo: indigo
7
  sdk: gradio
8
  sdk_version: 3.6
9
+ app_file: run.py
10
  pinned: false
11
  ---
 
 
__pycache__/run.cpython-36.pyc ADDED
Binary file (604 Bytes). View file
 
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ https://gradio-main-build.s3.amazonaws.com/c3bec6153737855510542e8154391f328ac72606/gradio-3.6-py3-none-any.whl
run.py ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from zipfile import ZipFile
2
+
3
+ import gradio as gr
4
+
5
+
6
+ def zip_to_json(file_obj):
7
+ files = []
8
+ with ZipFile(file_obj.name) as zfile:
9
+ for zinfo in zfile.infolist():
10
+ files.append(
11
+ {
12
+ "name": zinfo.filename,
13
+ "file_size": zinfo.file_size,
14
+ "compressed_size": zinfo.compress_size,
15
+ }
16
+ )
17
+ return files
18
+
19
+
20
+ demo = gr.Interface(zip_to_json, "file", "json")
21
+
22
+ if __name__ == "__main__":
23
+ demo.launch()
screenshot.png ADDED