README.md
ASCII text
tty-wordle
A clone of the popular word-guessing game Wordle that runs in the terminal. For Linux, Windows and Macintosh
Options
usage: tty-wordle [-h] [-a] [-x] [--delay DELAY] [-l WORDS] [-n ANSWERS] [-t GUESSES] A Wordle for your console. options: -h, --help show this help message and exit -a, --analyser add the analyser, a row of all found letters -x, --hard enable hard Wordle: you must use all found letters in your guesses --delay DELAY time to show error messages for, in seconds -l WORDS, --list WORDS file to pull allowed guesses from -n ANSWERS, --answers ANSWERS file to pull a random answer from -t GUESSES, --tries GUESSES number of tries
Credits
To Reactle for the default lists
Wordle game for inspiration
Other things
You can press
^C
if you want to give up
1# `tty-wordle` 2 3A clone of the popular word-guessing game Wordle that runs in the terminal. For Linux, Windows and Macintosh 4 5## Options 6 7``` 8usage: tty-wordle [-h] [-a] [-x] [--delay DELAY] [-l WORDS] [-n ANSWERS] [-t GUESSES] 9 10A Wordle for your console. 11 12options: 13-h, --help show this help message and exit 14-a, --analyser add the analyser, a row of all found letters 15-x, --hard enable hard Wordle: you must use all found letters in your guesses 16--delay DELAY time to show error messages for, in seconds 17-l WORDS, --list WORDS 18file to pull allowed guesses from 19-n ANSWERS, --answers ANSWERS 20file to pull a random answer from 21-t GUESSES, --tries GUESSES 22number of tries 23 24``` 25 26## Credits 27 28* To [Reactle](https://github.com/cwackerfuss/react-wordle) for the default lists 29* Wordle game for inspiration 30 31# Other things 32 33* You can press `^C` if you want to give up 34