Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AIEnergyScore
/
launch-computation-example
like
0
Paused
App
Files
Files
Community
0b07529
launch-computation-example
/
app.py
meg-huggingface
Initial test with Dockerfile
41f48cc
about 2 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!"
}