Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yisol
/
just_test
like
0
Running
App
Files
Files
Community
701aab4
just_test
/
app.py
yisol
Update app.py
701aab4
verified
8 months ago
raw
Copy download link
history
blame
Safe
186 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()
print
(
"why"
)
print
(
"s"
)
print
(
"wtf"
)