A little CLI Wordle clone using the official solutions, written in Python
Go to file
Jeeb 86280a4b55 Implement hard mode, plus customization
game:
- New flag `--hard`: Select from 3 levels of difficulty:
  - Greenie: only check greens
  - Hard: classic Wordle* hard mode
  - Grayless: All hints are checked, even gray letters
- New flag: `--nokeyboard` disables the keyboard
- Improved customization:
  - Box characters, colors, and keyboard layouts moved into wordlists!
  - Support for non-English alpha characters to be determined. It should work though, I think.
  - Most things are no longer hardcoded! The main function is still a bit of a spaghetti mess right now, though. To be fixed!

dummy:
- New customization parameters:
  - `"boxes"`: Strings to be printed when assembling the share string (from least to most significant order)
  - `"colors"`: Text colors, to be printed on-screen. Order: Gray, Yellow, Green, Text Color, Keyboard background
  - `"keyboard"`: The keyboard layout. One string per line, of keyboard.
2022-02-16 17:51:57 -06:00
src Implement hard mode, plus customization 2022-02-16 17:51:57 -06:00
.gitignore Initial commit 2022-02-12 11:23:24 +00:00
LICENSE Update license (lol) 2022-02-14 20:52:35 -06:00
README.md Initial commit 2022-02-12 11:23:24 +00:00

Wardle.py

A little CLI Wordle clone using the official solutions, written in Python