Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
HMPhuoc
/
toxic
like
0
Running
App
Files
Files
Community
9a5dd56
toxic
/
main.py
HMPhuoc
add route
9a5dd56
9 months ago
raw
Copy download link
history
blame
192 Bytes
from
flask
import
Flask
app = Flask(__name__)
@app.route(
"/"
)
def
hello
():
return
{
"hello"
:
"Deploy success"
}
@app.route(
"/<text>"
)
def
returnText
(
text
):
return
f'The text is
{text}
'