Play Wordle Bot - Wordle Bot written in python

Overview

Wordle Bot

A Bot written in python with a CL Interface to guess adn solve Wordle Puzzles efficiently.

Usage/Examples

from process import WordleGuessBot

def main():
    wbot = WordleGuessBot()
    """
        If you know the answer you 
        can initialize the object with argument
        gs = WordleGuessBot("amber")
    """
    wbot.guess_process()

if __name__ == "__main__":
    main()

# GUESS : amber
WORDLE ANSWER : "AMBER"

> Open the command line and execute main.py
    

    =>  Bot makes an opener guess 
    >> ATTEMPT MADE : SENOR


    =>  You input the guess in the wordle interface and 
        then remove unwanted chars by typing them together 
        in a string 
    >> REMOVE CHARS : sno

    =>  Similary type all the chars in a string 
        that were yellow or green. 
    >> ADD CHARS : er

    =>  Finally if some characters were green use 0-based indexing
        to indicate their position, if some characters were 
        yellow use '*' to indicate the bot that the 
        character's postion is unknown as of now.
        **************************************************
        (Note :  Type the indices or '*' in the exact same order as
        you entered in "ADD CHARS : " prompt, For example in the
        above example "er" relates to "*4" as if postion
        of "e" is unknows and "r" is at the 4th index of the word)
        **************************************************
    >> INDICES OF INCLUDED CHARS : *4

    REPEAT UNTIL THE BOT GUESSES THE CORRECT ANSWER

Features

  • Usually guesses b/w 3-4 moves
  • Guessing pattern based on the Entropy Function in Information Theory
  • User Friendly CLI

Requirements

  • Numpy
  • Pandas
You might also like...
PyWordle: A Python-made wordle manual solver

PyWordle: A Python-made wordle manual solver How to use it Start the program with python3 pywordlesolver.py. How it works The program has a simple 5-l

A Python-based Wordle solver and CLI player

Wordle A Python-based Wordle solver and CLI player This was created using Python 3.9.7. SPOILER ALERT: the data directory contains spoilers for upcomi

Play videos in the terminal.
Play videos in the terminal.

Termvideo Play videos in the terminal (stdout). python main.py /path/to/video.mp4 Terminal size: -x output_width, -y output_height. Default autodetect

Cli tool to browse and play anime
Cli tool to browse and play anime

browse and watch anime (scrape from gogoanime) (wip) basically ani-cli but in python cuz python good demo dependencies mpv installation from pypi pip

The most comprehensive, exhaustive, parameterized command-line wordle solver.
The most comprehensive, exhaustive, parameterized command-line wordle solver.

Wordle Solver The most comprehensive, exhaustive, parameterized command-line wordle solver. Wordle is a real

A cli tool , which shows you all the next possible words you can guess from in the game of Wordle.

wordle-helper A cli tool , which shows you all the next possible words you can guess from the Game Wordle. This repo has the code discussed in the You

Wordle helper: help you print posible 5-character words based on you input

Wordle Helper This program help you print posible 5-character words based on you

A clone of the popular online game Wordle

wordle_clone A CLI application for wordle. Description A clone of the popular online game Wordle.

A Telegram Bot Written In Python To Upload Medias To telegra.ph

Telegraph-Uploader A Telegram Bot Written In Python To Upload Medias To telegra.ph DEPLOY YOU CAN SIMPLY DEPLOY ON HEROKU BY CLICKING THE BUTTON BELOW

Owner
Prashant
Applied Math undergrad
Prashant
Wordle-textual - Play Wordle from the CLI, using Textual

Wordle, playable from the CLI This project seeks to emulate Wordle in your shell

PhenoM4n4n 3 Mar 29, 2022
Wordle - Wordle solver with python

wordle what is wordle? https://www.powerlanguage.co.uk/wordle/ preparing $ pip i

shidocchi 0 Jan 24, 2022
Lexeme - CLI to play a word-guessing game like Wordle

What is this? Python program to play a word-guessing game like Wordle, but… More addictive because you can play it over and over and over, not just on

Dan Lenski 6 Oct 26, 2022
Play WORDLE game in your terminal.

Wordle TUI Play WORDLE game in your terminal. The game will be kept the same as the Web version. Prerequisites Python 3.7+ Linux/MacOS (Windows is not

Frost Ming 61 Oct 30, 2022
A helper program to play wordle

A helper program to play wordle

null 1 Jan 22, 2022
Wordle-cli - Command-line clone of Josh Wardle's WORDLE

Command-line clone of Josh Wardle's WORDLE, inspired by Paul Battley's Ruby vers

Klipspringer 32 Jan 3, 2023
Wordle-solver - A tool that helps people who struggle with vocabulary to enjoy the famous game of WORDLE

Wordle-Solver Wordle-Solver helps people who struggle with vocabulary to enjoy t

Jason Chao 104 Dec 31, 2022
Wordle breaker: A CLI tool to help you solve Wordle

Wordle Breaker A CLI tool to help you solve Wordle I decided to code a solution

Alex 4 Apr 27, 2022
Wordle for CLUE - WORDLE clone for Adafruit Clue

Wordle_for_CLUE This project is a clone of the very popular word solving puzzle

Michael Lacock 4 Feb 15, 2022
This is a command line program to play cricket made using Python.

SimpleCricketPython This is a command line program to play cricket made using Python < How it works First you have the option of selecting whether you

Imira Randeniya 1 Sep 11, 2022