Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
philipp-zettl
/
canvas-test
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
philipp-zettl
commited on
Mar 3
Commit
0c53170
·
verified
·
1 Parent(s):
31d2b94
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
3
+
4
+
with gr.Blocks() as demo:
5
+
with gr.Row():
6
+
gradio.Sketchpad()
7
+
8
+
if __name__ == "__main__":
9
+
demo.launch()