Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
antomtnez
/
MyNewSpace
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b4c55eb
MyNewSpace
/
app.py
antomtnez
Create app.py file
b4c55eb
verified
6 months ago
raw
Copy download link
history
blame
Safe
160 Bytes
import
gradio
as
gr
def
saluda
(
nombre
):
return
"Hola"
+ nombre +
"!"
demo = gr.Interface(fn=saluda, inputs=
"text"
, outputs=
"text"
)
demo.launch(share=
True
)