Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Edvards
/
RetinaFaceApi
like
0
Sleeping
App
Files
Files
Community
6567450
RetinaFaceApi
/
app.py
Edvards
added initial files
70ef704
4 months ago
raw
Copy download link
history
blame
Safe
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}