CLI program to filter word choices to aid solving Wordle game problems
Project description
WORDLE-AID
wordle-aid is a Linux command line program to filter word choices to aid solving Wordle problems. You run this program specifying your previous guesses and results, and then the program outputs a list of candidate words in English frequency usage order to your terminal. Wordle-aid uses the pyspellchecker package for its source of English dictionary words and frequencies.
The following example Wordle (#21) solution illustrates how to use it.
-
Choose any starting word as normal. You can even use
wordle-aid
to help with this, e.g.# print all 5 letter words, in reverse frequency order to screen: $ wordle-aid ..... # Or, print all 5 letter words with at least 3 vowels: $ wordle-aid -v3 ..... # Or, print all 5 letter words with at least 3 vowels and all unique letters: $ wordle-aid -v3 -u .....
-
We choose our favorite starting word TRACE as the first guess, which gives the result shown on the first line of the image above. Based on this result, run:
$ wordle-aid TracE ..a.. <...> yeast 1587 leapt 1884 feast 12436 seats 18355 dealt 19971 beast 22995 beats 31332 meant 212776 death 285290 least 456376
The output above is the list of possible candidate words, given the command line word arguments you have specified.
Note: Specify the 1st guess word you used and set each yellow (i.e. correct but incorrect position) letter to upper-case, and other letters to lower-case. Specify all green (i.e. correct and in position) letters you have found so far in the right (wildcard) field in their correct position.
-
Choose a word from the suggestion list output from above command. We choose to enter the highest frequency candidate LEAST from the list, which gives the result shown on the second line in the the image above. Then run:
$ wordle-aid TracE leasT .ea.. heatd 18 beata 24 neato 41 peaty 50 neath 55 heath 467 meaty 726 death 285290
-
Choose a word from the suggestion list output from the above command. We choose to enter the highest frequency result DEATH, which gives us the final correct answer.
In summary, specify .....
(all wildcards) as your starting result and
insert characters to it as your find them, i.e. all green letters from
each guess. Note that the number of wildcard characters determines the
Wordle game word size (e.g. wordle-aid bundle ......
for a 6 letter
game). Specify your previous word guesses earlier on the command line.
They don't actually have to be in the order that you guessed them
although likely you will be re-editing from your command history so they
will be. Yellow letter guesses (i.e. letter valid but in incorrect
place) are entered as upper case, and dark/grey letter guesses (i.e.
letter not present anywhere) are entered as lower case. Green letters
(i.e. letter valid and in correct place) can be lower or upper case in
the earlier word arguments, but must be specified in the final
wildcard word (as either lower or upper case) .
Installation or Upgrade
Wordle-aid runs on pure Python and requires the pyspellchecker 3rd party package.
Arch users can install wordle-aid from the AUR.
Python 3.6 or later is required. Note wordle-aid is on
PyPI so just ensure that
python3-pip
and python3-wheel
are installed then type the following
to install (or upgrade):
$ sudo pip3 install -U wordle-aid
Or, to install from this source repository:
$ git clone http://github.com/bulletmark/wordle-aid
$ cd wordle-aid
$ sudo pip3 install -U .
To upgrade from the source repository:
$ cd wordle-aid # i.e. to git source dir above
$ git pull
$ sudo pip3 install -U .
Command Line Options
Type wordle-aid -h
to view the following usage summary:
usage: wordle-aid [-h] [-v VOWELS] [-u] words [words ...]
CLI program to filter word choices to aid solving Wordle game problems.
positional arguments:
words list of attempted words. Upper case letter is right
letter but wrong place. Lower case letter is wrong
letter anywhere. Last word is wildcards for current
matches.
options:
-h, --help show this help message and exit
-v VOWELS, --vowels VOWELS
exclude words with less than this number of unique
vowels
-u, --unique exclude words with non-unique letters
License
Copyright (C) 2022 Mark Blakeney. This program is distributed under the terms of the GNU General Public License. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License at http://www.gnu.org/licenses/ for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file wordle-aid-2.0.tar.gz
.
File metadata
- Download URL: wordle-aid-2.0.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6649d00bb4d4de455fc76b657cd3e41d68b2151da2ddd1737ee5eb46e03ae544 |
|
MD5 | b7d65577bb927c646faabef90101e2ed |
|
BLAKE2b-256 | 3b062b8f9fac7bd41078a594534ff688229158328796f116ff9068e2172742b2 |
Provenance
File details
Details for the file wordle_aid-2.0-py3-none-any.whl
.
File metadata
- Download URL: wordle_aid-2.0-py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b0d7ff485089c851ef13a783bc41753bf7d97f7b3ac83166bd265456647def0 |
|
MD5 | 855956fa741036ee77ebd77268ef41f2 |
|
BLAKE2b-256 | 8436162a879a591692bad90030236713d6859a5042532c37237d5e8503b95e65 |