Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
wmzayed
/
gradio-0
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3d1e086
gradio-0
/
app.py
wmzayed
Update app.py
3d1e086
verified
12 months ago
raw
Copy download link
history
blame
Safe
159 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch(`share=
True
`)