Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hassan526
/
Face_Liveness_Detection_API
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Face_Liveness_Detection_API
/
app.py
hassan526
Create app.py
3d25421
verified
10 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
109 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}