Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
lalalic
/
xtts
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
256d30e
xtts
/
test.py
lalalic
Update test.py
08d9505
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
173 Bytes
from
flask
import
Flask
app=Flask(__name__)
@app.route(
"/"
)
def
hello
():
return
"hello flask"
@app.route(
"/good"
, methods=[
"get"
]
)
def
good
():
return
"hello good"