/wordle-helper

Wordle is too hard for me

Primary LanguagePython

wordle-helper

Words lists from 3b1b.

Warning: Docs are out of date. Everything below is correct but there are undocumented features.

Usage

play.py (calls helper.py under the hood)

Type the response for each wordle guess. Press the same character multiple times to change it's color. Press enter to lock in that character.

helper.py

usage: helper.py known_positions included_characters excluded_characters

  • known_positions: Characters with known positions as a string of length 5 with - as placeholders such as --xy-.
  • included_characters: Characters that are included in the word but in unkown location in the form xyz. Use - if there are none.
  • excluded_characters: Characters that are excluded in the word in the form xyz. Use - if there are none.
  • excluded_positions: Characters with known positinois where they do not exist with , seperating each position such as ,x,y,,xy

Examples

helper.py example

Example of wordle and matching command:

❯ python helper.py ----- cre an c,er,r,c,e
Show 1 possible words? [y/n] y
ulcer

play.py example

image