A solver for wordgames such as scrabble and countdown
pip3 install wordgame --upgrade --user
pip3 install wordgame --index-url https://test.pypi.org/simple/ --upgrade --user
python3 -m pip install . --user
python3 -m wordgame -n 10 fdofieasg
Which should result in words such as offside
.
To run linting, unit tests and package building run the following.
make
make check
or
flake8
make test
or
python3 -m unittest
make build
or
python3 setup.py sdist bdist_wheel
Ensure that the version number is distinct from the previous version.
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
twine upload dist/*
source: https://www.instructables.com/id/Python-and-Word-Lists/