Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Curify
/
Ideas
like
0
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
7911601
Ideas
/
app.py
qqwjq1981
Update app.py
7911601
verified
5 months ago
raw
Copy download link
history
blame
Safe
166 Bytes
import
gradio
as
gr
def
on_button_click
():
return
"Button clicked!"
iface = gr.Interface(fn=on_button_click, inputs=gr.Button(), outputs=
"text"
)
iface.launch()