rholinshead commited on
Commit
47d6caa
1 Parent(s): af5ca0f

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from gradio_notebook import GradioNotebook
3
+
4
+ with gr.Blocks() as demo:
5
+ GradioNotebook()
6
+
7
+ demo.queue().launch()