Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
persistent-storage-test
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
abidlabs
HF Staff
commited on
Oct 5, 2023
Commit
e815fc8
·
1 Parent(s):
274bd6a
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import gradio as gr
2
+
3
+
with gr.Blocks() as demo:
4
+
gr.FileExplorer()
5
+
6
+
demo.launch()