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...
a1aa8a9
test-scroll
/
app.py
abidlabs
HF Staff
Create app.py
a1aa8a9
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()