Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Inthv
/
computing
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Inthv
commited on
Dec 6, 2022
Commit
76efa1d
·
1 Parent(s):
be8eca2
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
+
aList = []
3
+
def add2List(num):
4
+
num = int(num)+1
5
+
aList.append(num)
6
+
return aList
7
+
8
+
iface = gr.Interface(fn=add2List, inputs="text", outputs="text")
9
+
iface.launch()