Add easy mode
Update gitignore
Add wordlist to python
A 'cheat' app for wordle.
In the root of this repository, run python3 -m wordle
. Input the guess that
the program gives you and then enter the response given by wordle.
A typical session looks like the following (lines prefixed with # are not program input or output):
$ python3 -m wordle
try: jeans
# wordle response: ⬛🟨⬛⬛⬛
chk: bybbb
try: filed
# wordle response: ⬛🟩⬛🟩⬛
chk: bgbgb
try: piker
# wordle response: ⬛🟩⬛🟩🟩
chk: bgbgg
Only a few candidates remain. Type a word if you wish to choose that one next.
The candidates are: biter giver miter mixer ricer river tiger timer
custom (empty/not present will randomize):
try: miter
# wordle response: ⬛🟩🟨🟩🟩
chk: bgygg
Only one candidate left; this should be it!
try: tiger
# wordle response: 🟩🟩🟩🟩🟩
# you can type 'ggggg' here or use ^D (EOF) or ^C (INT) to quit
# if this was the last guess, the program will exit
MIT/X11, See LICENSE file