Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ASI-Engineer
/
oc_p5-dev
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e8e37bc
oc_p5-dev
/
app.py
ASI-Engineer
Upload folder using huggingface_hub
572fd8e
verified
4 months ago
raw
Copy download link
history
blame
Safe
110 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
root
():
return
{
"status"
:
"Hello World"
}