Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
MMLR
/
try_catt
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
365abf6
try_catt
/
main.py
MohamedLotfy
modify image container adding main for testing
365abf6
4 months ago
raw
Copy download link
history
blame
Safe
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}