WordleBot
A Python implementation of Wordle that can play the game on its own.
Year | 2025 |
Website | GitHub |
WordleBot recreates the daily word guessing game with a small Tkinter interface and command-line mode. The project started as a way to experiment with search strategies for Wordle and grew into a handy testing ground for solver ideas.
The auto solver uses a letter-position frequency heuristic. After each guess, it keeps only the candidate words that fit the feedback. Each remaining word receives a score based on how often its letters appear in the same positions among the candidates. The solver always picks the highest-scoring option, steadily shrinking the search space until the hidden word is revealed.