https://github.com/xavierog/wordle-assistant
Python CLI assistant for Wordle players
https://github.com/xavierog/wordle-assistant
cli dictionary python wordle
Last synced: 3 months ago
JSON representation
Python CLI assistant for Wordle players
- Host: GitHub
- URL: https://github.com/xavierog/wordle-assistant
- Owner: xavierog
- License: mit
- Created: 2022-02-06T15:45:37.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-04T18:51:57.000Z (5 months ago)
- Last Synced: 2025-01-04T19:29:30.900Z (5 months ago)
- Topics: cli, dictionary, python, wordle
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wordle-assistant
Python CLI assistant for Wordle players```console
$ wordle --help
Wordle Assistant.Usage:
wordle: list all 5-letter wordswordle wrongletters: same, but remove words that contain any of the wrong letters
Caution: this parameter cannot be empty.
Example: wordle tyrchwordle wrongletters pattern: same, but keep only words that match the given (Python) regex pattern
Use a dash (-) character if you do not have a pattern yet
Examples:
wordle tyrch g.e.s
wordle tyrch ^g
wordle tyrch s$
wordle tyrch '^g[ue]'wordle wrongletters pattern misplaced_letters ...: same but takes misplaced letters into account
There are multiple supported notations:
- positions range from 1 to 5
- "3g" or "g3" means that a "g" at position 3 was considered misplaced
- "^u" means that a "u" at the start of the word was considered misplaced
- "e$" means that an "e" at the end of the word was considered misplaced
- ".s.u." means that an "s" at position 2 and a "u" at position 4 were considered misplaced
Examples:
wordle tyrch - 3g ^u e$ .s.u.
wordle tyrch '^g[ue]' 3g ^u e$ .s.u.
```