philipp-zettl commited on
Commit
0c53170
·
verified ·
1 Parent(s): 31d2b94

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -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()