Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
drewThomasson/Pipertts
vuxuanhoan
/
Pipertts
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a1e71b8
Pipertts
/
app.py
Gregniuki
Upload app.py
2d6b177
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!"
}