Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
daniel-de-leon
/
test-docker
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
main
test-docker
/
main.py
daniel-de-leon
add reqs and app file
5f2848a
almost 3 years ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
Safe
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
'/'
)
def
read_root
():
return
{
"Hello"
:
"World!"
}