Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yashzambre
/
files_multiple
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
yashzambre
commited on
Oct 4, 2023
Commit
c283bd4
·
1 Parent(s):
de4e6a5
Create run.py
Browse files
Files changed (1)
hide
show
run.py
+6
-0
run.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import gradio as gr
2
+
3
+
with gr.Blocks() as demo:
4
+
gr.File(file_count='multiple')
5
+
6
+
demo.launch()