Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
chris-rannou/test-private-2
chris-rannou
/
test-tcp
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
051bdea
test-tcp
/
app.py
chris-rannou
HF Staff
test new queue
051bdea
almost 3 years ago
raw
Copy download link
history
blame
187 Bytes
import
gradio
as
gr
import
time
print
(gr.__version__)
def
waiter
(
*args
):
time.sleep(
10
)
return
"Hello after 10 sec"
gr.Interface(waiter,
"text"
,
"text"
).launch(enable_queue=
True
)