Utility for solving and exploring wordle puzzles.
Play interactively:
wordle play [-h]

For help, run:
wordle --help

(per this online leaderboard for hard-mode using the original 2315-word answer set)
Install this tool using pip
:
pip install wordle-solver
To contribute to this tool, first checkout the code. Then create a new virtual environment:
cd wordle
python3 -m venv venv
source venv/bin/activate
Now install the dependencies and test dependencies:
pip install -e '.[test]'
To run the tests:
pytest