Tool for Quarrel (video game)
Project description
quarrel-solver
Tool for Quarrel (and other word games)
Summary
Provides word game-related tools, and can be configured with custom settings, letter scores, and wordlists.
Works on Python 3.6 and above. Tested on Windows 10.
Contents
The quarrel-solver library
Install the quarrel-solver library to use all functionality in your own projects.
Remember to always use the latest version, as not all bugfixes are documented!
$ py -m pip install --upgrade quarrel-solver
$ py
>>> from quarrel_solver import build_settings, Ruleset
>>> q = Ruleset(
... settings=build_settings(
... {'max_words_len': 8}
... )
... )
>>> print(
... q.solve_str('wetodlnm')
... )
--- query: delmnotw (8 letters) ---
8 letters - 18 points
MELTDOWN
5 letters - 14 points
MOWED
4 letters - 12 points
MEWL
3 letters - 10 points
MEW, MOW, WEM
2 letters - 6 points
EW, OW, WE, WO
>>> _
Note: for the
pip installcommand, you can usequarrel-solverwith a hyphen, orquarrel_solverwith an underscore. When importing the module in Python or running it from the commandline, you MUST use an underscore.
For a more informed walkthrough, please see the example case below.
Direct execution
$ py -m quarrel_solver
If you call the library directly, you'll be greeted with a commandline program. Its input screen looks like this:
> _
Type your letters into the field, press Enter, and wait for the program to calculate the best words. Once it's done, choose one from the list that corresponds with the number of letters you have available, or the next lowest. See the example below to find out why you might not need to use all of your spaces.
Example case
Here's an example using the default program settings. Our situation is the following:
- We're playing Quarrel, and thus we get 8 letters.
- Our letters are
wetodlnm. - We have 7 spaces to use.
After installing the library, we'll open a commandline and run the program.
Since we know we don't need words longer than 8 letters, we can minimise loading time by configuring the program to only calculate for words of that length. We can do this by passing our desired settings as command arguments:
$ py -m quarrel_solver --max_words_len 8
Note: this has the same effect as creating a
settings.jsonfile, then running the command from the same directory:// settings.json {"max_words_len": 8}## from folder with settings.json $ py -m quarrel_solver
Whichever way the program is run, it will have to load a wordlist. Once it finishes loading, we can input our letters and press Enter.
> wetodlnm
--- query: delmnotw (8 letters) ---
8 letters - 18 points
MELTDOWN
5 letters - 14 points
MOWED
4 letters - 12 points
MEWL
3 letters - 10 points
MEW, MOW
2 letters - 6 points
OW, WE, WO
> _
This tells us that the anagram is MELTDOWN, but we can't make that word because we can only use 7 letters. In this case, our best word is MOWED (14 points). Based on this output, we also know that our opponent cannot score higher than us without all 8 spaces.
Note: a word like
LETDOWNscores the same number of points asMOWED, but isn't recognised as a "best word" in this case. This is because when words are tied for points, the program will choose the word/s with the fewest letters.The fewer letters your word has, the faster you can write it into your game. This is especially important in Quarrel, as the tiebreaker for equal points is input speed.
Settings
Upon being run directly, the program will automatically generate (or look for) a settings.json file in the directory which the command is run from. This file contains the program's settings, which can be changed to suit your needs.
When using quarrel-solver, you should can pass a dict with any of the following keys into build_settings to generate a full settings object, then pass the output to a Ruleset to create a new instance. Here are all the currently supported settings:
| Setting | Default | Description |
|---|---|---|
all_lowercase |
false |
Displays output in lowercase letters. The default setting displays capital letters to mimic the style of word games like Scrabble and Quarrel. However, some people may find lowercase output more readable. |
allow_repeats |
false |
Determines whether letters can be used more than once. Change this according to your word game's rules; for example, Scrabble tiles can only be used once in a single word, whereas New York Times's Spelling Bee allows the reuse of letters. |
display_debug |
false |
Shows the program's inner workings whilst calculating. Note that this may negatively affect performance on certain devices or IDEs. |
exclude_words |
[] |
List of words that the program will never output. |
ignore_scores |
false |
Determines whether point values for words are considered, in which case only the highest-scoring words are displayed. If you don't care about scoring, turn this off to see all words. |
include_words |
[] |
List of additional words for the wordlist. |
letter_scores |
"quarrel" |
Determines the letter scoring system used for calculating points. The value here is passed into build_letter_scores(), and defaults back if invalid. |
max_words_len |
longest length in wordlist | Determines the maximum word length the program will calculate for. |
min_words_len |
2 |
Determines the minimum word length the program will calculate for. |
settings_path(commandline only) |
None |
Path to the settings file. |
When running directly:
- To change your settings, do one of the following:
- Open
settings.jsonin a text editor and change any values. Make sure to save the file once you're done. - Pass the setting as a command argument like this:
--setting_name value- This will automatically update the settings file, if applicable.
- Open
$ py -m quarrel_solver --display_debug true --max_words_len 8
- If
settings.jsonis not present in your folder, try running the program and letting it fully load. It should then create the file. - After saving
settings.json, the program will not change if it's already running. Close the program and run it again to use the changed settings.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file quarrel-solver-1.12.tar.gz.
File metadata
- Download URL: quarrel-solver-1.12.tar.gz
- Upload date:
- Size: 783.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f6c4095330f2c63ad4c47ca4d80f92975d890b2bca99ec205a6c0b74debc48f
|
|
| MD5 |
3ddf4e3d3cf507477b03b8e726669ae4
|
|
| BLAKE2b-256 |
ddd0e942650ca2efbe9048b1820403bdca34d95b7686611b89816c2fc4379e63
|
File details
Details for the file quarrel_solver-1.12-py3-none-any.whl.
File metadata
- Download URL: quarrel_solver-1.12-py3-none-any.whl
- Upload date:
- Size: 780.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cce54abcef4ccb237031c8ca610745cf7f18a6696d9d5d86c4da2b05992128c
|
|
| MD5 |
506c7aa859885c64db40dce4758d6b29
|
|
| BLAKE2b-256 |
c82334904c78aa7d1415d3c1ae0688c35d9a670a9692f7ca3be4a46a11dac400
|