Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dev-mode-explorers
/
dev-mode-python
like
4
Running
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
refs/pr/2
dev-mode-python
/
app.py
kickfighter
Update app.py
f480df4
verified
9 days ago
raw
Copy download link
history
blame
133 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
tmp =
"Konsta"
return
{
"Hello"
:
"World!"
, tmp}