~cdv/wordle.py

A wordle helper (cheater?).
Add easy mode
Update gitignore
Add wordlist to python

refs

main
browse  log 

clone

read-only
https://git.sr.ht/~cdv/wordle.py
read/write
git@git.sr.ht:~cdv/wordle.py

You can also use your local clone with git send-email.

#wordle.py

A 'cheat' app for wordle.

#Usage

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

#COPYING

MIT/X11, See LICENSE file