Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jackss011
/
dnlp-demo
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d1659f7
dnlp-demo
/
main.py
Jackss
Docker file
d1659f7
over 1 year ago
raw
Copy download link
history
blame
Safe
107 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
'/'
)
def
read_root
():
return
{
"Hello"
:
"World!"
}