Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
nateraw
/
test-spaces-app-from-github
like
0
Runtime error
App
Files
Files
Community
133b48b
test-spaces-app-from-github
/
app.py
nateraw
Upload app.py with huggingface_hub
01e1489
about 2 years ago
raw
Copy download link
history
blame
Safe
171 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
interface = gr.Interface(greet,
'text'
,
'text'
)
if
__name__ ==
'__main__'
:
interface.launch()