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...
768d2b7
gradioTest1
/
app.py
jaumaras
Rename App.py to app.py
768d2b7
almost 2 years ago
raw
Copy download link
history
blame
Safe
193 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()