Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
test-scroll
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
abidlabs
HF Staff
commited on
Jul 6, 2023
Commit
a1aa8a9
·
1 Parent(s):
69f31bf
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import gradio as gr
2
+
3
+
def do(a):
4
+
import time
5
+
time.sleep(5)
6
+
return a
7
+
8
+
gr.Interface(do, "text", "text").launch()