Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Kiwinicki
/
sat2map
like
1
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
66754a0
sat2map
/
app.py
Kiwinicki
Update app.py
66754a0
verified
5 months ago
raw
Copy download link
history
blame
Safe
143 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello
{name}
!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()