Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
abidlabs/test-scroll
abidlabs
/
test-scroll-main
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c4769fb
test-scroll-main
/
app.py
abidlabs
HF Staff
Duplicate from abidlabs/test-scroll
f753cfb
almost 2 years ago
raw
Copy download link
history
blame
Safe
121 Bytes
import
gradio
as
gr
def
do
(
a
):
import
time
time.sleep(
5
)
return
a
gr.Interface(do,
"text"
,
"text"
).launch()