Skip to main content

Little helper to play the Wordle game

Project description

Wordle

Description

This is to help playing the Wordle game.

Usage

All the command line options can be found with the --help option.

ubuntu@tab-pcg-ubuntu:~/wordle$ poetry run wordle --help
usage: Propose the next word at the Wordle game. [-h] [--all] [--none] [--unique] [--check] [--verbose] [--letters LETTERS] [--minfrequency MINFREQUENCY]

options:
  -h, --help            show this help message and exit
  --all                 Displays the full list of available words.
  --none                Use none of the previously used letters.
  --unique              Do not repeat letters in a word.
  --check               Check that the word is valid.
  --verbose             Print progress.
  --letters LETTERS     The set of letters to be used.
  --minfrequency MINFREQUENCY
                        A minimum frequency for the proposed words, between 1 and 7.

Check the Words API

In order to call the Words API below, you need to store a valid Rapid API key in RAPIDAPI_KEY environment variable. This can be done with the secret.sh if available in the repository:

. secret.sh

Using the --check option will check all proposed words with the Words API. Be carefull that we only have 2500 free queries per day. After that it will automatically cost $0.004 per extra word. But it is also quite easy to check the status current of the usage.

poetry run wordle --check

Letters

The --letters is useful to start the game with a word that is using the most common english letters to have the best chances to find letters of the solution word. It also could be a good idea to add the --unique option to avoid repeating a letter. Adding the --check will allow to check how often the words are used. This can be filtered with a --minfrequency. And if you do not add too many letters, you can finally add --all to see the full list of matching words.

poetry run wordle --letters=etaionshr --unique --check --minfrequency=3 --all

Development

The python depedencies are handled with Poetry.

poetry install

Unit tests

This is how to run the unit tests and generate the JUnit report.

poetry run pytest --junitxml=test-reports/report.xml

Check the types

This is done with mypy

poetry run mypy *.py

Check the syntax

This is done with pylint

poetry run pylint *.py

Initial word list

The initial list is taken from Github. But it contains many word that hardly exist.

Safety

In order to test that all the dependencies have no known issues, we are experimenting with Safety that compares our dependencies to the Satefty DB.

Checking the safety of the installed packages is done as follow:

poetry run safety check

Poetry makes it easy to upgrade to the latest packages. It will update the poetry.lock and even the pyproject.toml accordingly.

poetry update

Publish to Pypi

On Pypi, this package is called pywordle. It is very simple to publish it with poetry:

poetry install
poetry build
poetry publish

Then it can be used with pip for example:

pip instal pywordle
wordle --help

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pywordle-0.1.6.tar.gz (1.1 MB view hashes)

Uploaded Source

Built Distribution

pywordle-0.1.6-py3-none-any.whl (1.1 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page