Tools to remove all the fun from playing Wordle
You should create a virtual environment first with your preferred tool.
Then install the project with poetry:
poetry installwordle-assistant -w data/dictionary_fr_sutom.txtAdding dependencies to the project can be done with a simple:
poetry add <package-name>Always run black and isort on all the code of the package (including the example project):
black src
isort srcEven though black does a great job a formatting the code, some lint warnings can sneak through it, so
we also use flake8 (with a custom configuration):
flake8 srcTo check the type hinting is correct, simply run:
mypy --pretty src