Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
coollsd
/
pppppz
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
pppppz
/
app.py
coollsd
Create app.py
a5b6936
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
116 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
async
def
root
():
return
{
"message"
:
"Hello World"
}