Giftshopp commited on
Commit
169e0a9
1 Parent(s): 9fb608d

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
+ aList= []
3
+ def add2List(num):
4
+ num = int(num)
5
+ aList.append(num)
6
+ return aList
7
+
8
+ iface = gr.Interface(fn=add2List, inputs="text", outputs="text")
9
+ iface.launch()