Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
adamf9898
/
new-space
like
0
Running
App
Files
Files
Community
main
new-space
/
app.py
adamf9898
initial commit
7fec44f
verified
about 23 hours ago
raw
Copy download link
history
blame
contribute
delete
Safe
187 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"textbox"
, outputs=
"textbox"
)
if
__name__ ==
"__main__"
:
demo.launch()