A simple spell checking flask service based on the open-source aspell library.
This runs on a Linux environment.
- Install
python >= 3.6
- Install the Aspell library
- Install the python requirements:
pip install -r requirements.txt
- Start the flask service:
python app.py --port 5555
- Issue POST commands:
curl -H "Content-Type: application/json" -X POST http://localhost:5555/spellCheck -d '{"string": "helloworld"}'