JoPmt commited on
Commit
6670080
1 Parent(s): 656598d

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -0
app.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def plex():
4
+ return
5
+
6
+ with gr.Blocks() as iface:
7
+ with gr.Row():
8
+ with gr.Column():
9
+ outtxt=gr.Textbox()
10
+ with gr.Column():
11
+ with gr.Tabs():
12
+ with gr.Row():
13
+ tab1=gr.Tab()
14
+ with gr.Row():
15
+ tab2=gr.Tab()
16
+
17
+
18
+ iface.launch()