POST: https://vietnamese-checker.vercel.app/
Input format:
{
"text": "Việt"
}
Output format:
{
"result": true
}
GET: https://vietnamese-checker.vercel.app/word
Replay 'word' to any word you want to check
Output format:
{
"result": true
}
curl -X POST https://vietnamese-checker.vercel.app/ --header 'Content-Type: application/json' --data '{"text": "Việt"}'
curl https://vietnamese-checker.vercel.app/Việt
First, install enviroment
pip install -r requirements.txt
To run demo api, use
python app.py
For run and listen all updation, use
flask --app app.py --debug run
Welcome all pull request ^^