A Hebrew version of Semantle.
Just like any Python project:
python -m virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
unless you want to do dev stuff and then you can replace the last line with:
pip install -r requirements-dev.txt
You can run the game with:
PORT=<PORT> python app.py
Configurations can be set in config.py (not part of the repo as it contains secrets).
you should be using a mongo server for storing the vectors. Word2Vec model was trained as described (here)[https://github.com/Iddoyadlin/hebrew-w2v]
There are some useful scripts in the scripts/ folder:
populate.py: Given a Word2Vec model, will populate mongo collection used by the game.set_secret.py: Well...semantle.py: A CLI version of the game.
Only for some of the logic right now, because I was lazy. Sorry.