Skip to content

martino-vic/wordler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A program to support you to solve the wordle puzzles.

installation

$ pip install wordler

alternatively clone or download this repository and run python wordler.py from the root directory.

usage

Use a pangram like "vogue jacks blitz dwarf nymph" for the first five guesses. Then run:

>>> from wordler import wordler
>>> wordler.main()

and answer the questions.

dependencies

if you cloned or downloaded this repository, run pip install anagram-solver (https://github.com/patrickleweryharris/anagram-solver) before you start.

Todo

  • add unittests
  • add ci with CircleCI
  • add requests+bs4 libraries and query the website instead of userinput
  • don't solve it faster than 6 rounds - the USP of this program is to be as simple and readable as possible.
  • turn into app (anvil, playstore, iOs)