sozlik-web project is build using Flask and sqlite. It is a simple dictionary application that has following features:
- Auto suggestions on user input
- If a user searches for a wrong word, or makes a typo, there will be 'did you mean' option with possible substitues (if applicable)
pip install virtualenv
virtualenv sozlikenv
source sozlikenv/bin/activate
pip install flask gunicorn
git clone https://github.com/shagalalab/sozlik-web.git
gunicorn --bind localhost:5000 wsgi:app
You can open the app in your browser by typing http://localhost:5000