Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
artelo1
/
bielik
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7333803
bielik
/
main.py
artelo1
Upload main.py
7333803
verified
4 months ago
raw
Copy download link
history
blame
Safe
113 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}