Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jaumaras
/
gradioTest1
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
17ddfc9
gradioTest1
/
app.py
jaumaras
Update app.py
17ddfc9
almost 2 years ago
raw
Copy download link
history
blame
Safe
195 Bytes
##! pip install gradio
import
gradio
as
gr
def
hello_world
(
name
):
return
"HEllo..."
+ name +
"!!!!"
interface = gr.Interface(fn = hello_world, inputs=
'text'
,outputs=
"text"
)
interface.launch()