Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Gregniuki
/
Pipertts
like
6
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
a1e71b8
Pipertts
/
code
/
app.py
Gregniuki
Upload app.py
617711b
over 1 year ago
raw
Copy download link
history
blame
Safe
113 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
async
def
read_root
():
return
{
"Hello"
:
"World!"
}