Practicing pygame with a very simple game. I also wanted to play wordle more than once a day and decided to implement one myself.
Not licensed for commercial use.
- asdf (recommended)
- note: alternatively you can install poetry and python yourself,
however in that case you have to check pyproject.toml for the appropriate
python version and you must use
poetry installinstead ofmake setup.
- note: alternatively you can install poetry and python yourself,
however in that case you have to check pyproject.toml for the appropriate
python version and you must use
- install all dependencies and create the virtual environment with
make setup
note: If you are going to run tests and contribute to this project, please run the command below instead:
make setup-dev- Make sure you setup the game (one-time step)
- run the game with:
make play
- Type a 5-letter word and press enter (⏎) to guess.
- If the letter is present in the word but not in the same position, the letter will be marked with yellow, if the letter is in the right position it will be marked with green, otherwise it will not change.
- Continue guessing until you get it right or reach the limit.
Example:
Please reach out to me in case you would like to contribute. Before you get started, please see Setup for setting up the project.
- Run all tests with:
make test
