Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
MatteoScript/FastAPI
MatteoScript
/
AI
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7487ea3
AI
/
main.py
osanseviero
Space part 1
b916cdf
over 2 years ago
raw
Copy download link
history
blame
Safe
107 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}