dice


Namedice JSON
Version 4.0.0 PyPI version JSON
download
home_pageNone
SummaryA library for parsing and evaluating dice notation
upload_time2023-05-18 17:23:34
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseNone
keywords dice
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # dice

A Python library and command line tool for parsing and evaluating dice notation.

_I consider this library "finished", and don't expect to add any more features to it. Bug and security fixes may still be released, especially if you find any bugs after all this time. If you're interested in other libraries in this space, [dyce] has [a great comparison table][comparison-to-alternatives] of Python dice rolling libraries._

[dyce]: https://posita.github.io/dyce/latest/
[comparison-to-alternatives]: https://posita.github.io/dyce/0.6/#comparison-to-alternatives

## Quickstart

### Command-line

```shell
$ roll 3d6
```

The command line arguments are as follows:

* `-m` `--min` Make all rolls the lowest possible result
* `-M` `--max` Make all rolls the highest possible result
* `-h` `--help` Show this help text
* `-v` `--verbose` Show additional output
* `-V` `--version` Show the package version

If your expression begins with a dash (`-`), then put a double dash (`--`)
before it to prevent the parser from trying to process it as a command option.
Example: `roll -- -10d6`. Alternatively, use parenthesis: `roll (-10d6)`.

### Python API

Invoking from python:

```python
import dice
dice.roll('3d6')
```

This returns an `Element` which is the result of the roll, which can be a
`list`, `int`, or subclass thereof, depending on the top-level operator.

## Usage

### Installation

This library is available as `dice` on PyPI. Install it with your Python
package or dependency manager of choice — if you're installing it as a
command-line tool, I recommend [pipx].

A recent version of Python 3 (3.8 or above) is required. You can probably run
it or easily adapt it for older versions of Python, but I don't support any
end-of-life Python versions. Beyond that, the only dependency is the `pyparsing` library.

[pipx]: https://pypa.github.io/pipx/

### Notation

The expression works like a simple equation parser with some extra operators.

*The following operators are listed in order of precedence. Parentheses may
be used to force an alternate order of evaluation.*

The dice (`[N]dS`) operator takes an amount (N) and a number of sides (S), and
returns a list of N random numbers between 1 and S. For example: `4d6` may
return `[6, 3, 2, 4]`. Using a `%` as the second operand is shorthand for 
rolling a d100, and a using `f` is shorthand for ±1 fudge dice.

The fudge dice (`[N]uS`) operator is interchangeable with the dice operator,
but makes the dice range from -S to S instead of 1 to S. This includes 0.

A wild dice (`[N]wS`) roll is special. The last roll in this set is called the
"wild die". If this die's roll is the maximum value, the second-highest roll
in the set is set to the maximum value. If its roll is the minimum, then
both it and the highest roll in the set aer set to zero. Then another die is
rolled. If this roll is the minimum value again, then ALL die are set to zero.
If a single-sided wild die is rolled, the roll behaves like a normal one.

If N is not specified, it is assumed you want to roll a single die.
`d6` is equivalent to `1d6`.

Rolls can be exploded with the `x` operator, which adds additional dice
to the set for each roll above a given threshold. If a threshold isn't given,
it defaults to the maximum possible roll. If the extra dice exceed this
threshold, they "explode" again! Safeguards are in place to prevent this from
crashing the parser with infinite explosions.

You can make the parser re-roll dice below a certain threshold with the `r`
and `rr` operators. The single `r` variety allows the new roll to be below
the threshold, whereas the double variety's roll *changes* the roll range to
have a minimum of the threshold. The threshold defaults to the minimum roll.

The highest, middle or lowest rolls or list entries can be selected with
(`^` or `h`), (`m` or `o`), or (`v` or `l`) respectively.
`6d6^3` will keep the highest 3 rolls, whereas `6d6v3` will select
the lowest 3 rolls. If a number isn't specified, it defaults to keeping all
but one for highest and lowest, and all but two for the middle. If a negative
value is given as the operand for any of these operators, this operation will
drop that many elements from the result. For example, `6d6^-2` will drop the
two lowest values from the set, leaving the 4 highest. Zero has no effect.

A variant of the "explode" operator is the `a` ("again") operator. Instead of
re-rolling values equal to or greater than the threshold (or max value), this
operator doubles values *equal* to the provided threshold (or max value). When
no right-side operand is specified, the left side must be a dice expression.

There are two operators for taking a set of rolls or numbers and counting the
number of elements at or above a certain threshold, or "successes". Both
require a right-hand operand for the threshold. The first, `e`, only counts
successes. The second, `f`, counts successes minus failures, which are when
a roll is the minimum possible value for the die element, or 1 for lists.

A list or set of rolls can be turned into an integer with the total (`t`)
operator. `6d1t` will return `6` instead of `[1, 1, 1, 1, 1, 1]`.
Applying integer operations to a list of rolls will total them automatically.

A set of dice rolls can be sorted with the sort (`s`) operator. `4d6s`
will not change the return value, but the dice will be sorted from lowest to
highest.

The `+-` operator is a special prefix for sets of rolls and lists. It
negates odd roles within a list. Example: `[1, 2, 3]` -> `[-1, 2, -3]`.
There is also a negate (`-`) operator, which works on either single
elements, sets or rolls, or lists. There is also an identity `+` operator.

Values can be added or subtracted from each element of a list or set of rolls
with the point-wise add (`.+`) and subtract (`.-`) operators. For example:
`4d1 .+ 3` will return `[4, 4, 4, 4]`.

Basic integer operations are also available: `(16 / 8 * 4 - 2 + 1) % 4 -> 3`.


Finally, there are two operators for building and extending lists. To build a
list, use a comma to separate elements. If any comma-seperated item isn't a
scalar (e.g. a  roll), it is flattened into one by taking its total. The
"extend" operator (`|`) is used to merge two lists into one, or append single
elements to the beginning or end of a list.

### Python API

The calls to `dice.roll()` above may be replaced with `dice.roll_min()` or
`dice.roll_max()` to force ALL rolls to their highest or lowest values
respectively. This might be useful to see what the minimum and maximum
possible values for a given expression are. Beware that this causes wild dice
rolls to act like normal ones, and rolls performed as explosions are not
forced high or low.

The `roll()` function and variants take a boolean `raw` parameter which
makes the library return the element instead of the result. Note that the 
`evaluate_cached` method is called as part of `roll()`, which populates
`element.result`. Calling `element.evaluate()` will not reset this value.

To display a verbose breakdown of the element tree, the
`dice.utilities.verbose_print(element)` function is available.
If `element.result` has not yet been populated, the function calls
`evaluate_cached()` first. Keep this in mind if you want to print the result
of an evaluation with custom arguments. `verbose_print()` returns a `str`.

Most evaluation errors will raise `DiceError` or `DiceFatalError`, both of
which are subclasses of `DiceBaseError`. These exceptions have a method
named `pretty_print`, which will output a string indicating where the error
happened::

```python-repl
>>> try:
...   dice.roll('1/0')
... except dice.DiceBaseException as e:
...   print(e.pretty_print())
...
1/0
  ^ Division by zero
>>>
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "dice",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "Sam Clements <sam@borntyping.co.uk>",
    "keywords": "dice",
    "author": null,
    "author_email": "Sam Clements <sam@borntyping.co.uk>, Caleb Johnson <me@calebj.io>",
    "download_url": "https://files.pythonhosted.org/packages/72/3e/a07b66d345678cd277df76fdf51cb4ffc1054492efcd674a7b30f49a80bf/dice-4.0.0.tar.gz",
    "platform": null,
    "description": "# dice\n\nA Python library and command line tool for parsing and evaluating dice notation.\n\n_I consider this library \"finished\", and don't expect to add any more features to it. Bug and security fixes may still be released, especially if you find any bugs after all this time. If you're interested in other libraries in this space, [dyce] has [a great comparison table][comparison-to-alternatives] of Python dice rolling libraries._\n\n[dyce]: https://posita.github.io/dyce/latest/\n[comparison-to-alternatives]: https://posita.github.io/dyce/0.6/#comparison-to-alternatives\n\n## Quickstart\n\n### Command-line\n\n```shell\n$ roll 3d6\n```\n\nThe command line arguments are as follows:\n\n* `-m` `--min` Make all rolls the lowest possible result\n* `-M` `--max` Make all rolls the highest possible result\n* `-h` `--help` Show this help text\n* `-v` `--verbose` Show additional output\n* `-V` `--version` Show the package version\n\nIf your expression begins with a dash (`-`), then put a double dash (`--`)\nbefore it to prevent the parser from trying to process it as a command option.\nExample: `roll -- -10d6`. Alternatively, use parenthesis: `roll (-10d6)`.\n\n### Python API\n\nInvoking from python:\n\n```python\nimport dice\ndice.roll('3d6')\n```\n\nThis returns an `Element` which is the result of the roll, which can be a\n`list`, `int`, or subclass thereof, depending on the top-level operator.\n\n## Usage\n\n### Installation\n\nThis library is available as `dice` on PyPI. Install it with your Python\npackage or dependency manager of choice \u2014 if you're installing it as a\ncommand-line tool, I recommend [pipx].\n\nA recent version of Python 3 (3.8 or above) is required. You can probably run\nit or easily adapt it for older versions of Python, but I don't support any\nend-of-life Python versions. Beyond that, the only dependency is the `pyparsing` library.\n\n[pipx]: https://pypa.github.io/pipx/\n\n### Notation\n\nThe expression works like a simple equation parser with some extra operators.\n\n*The following operators are listed in order of precedence. Parentheses may\nbe used to force an alternate order of evaluation.*\n\nThe dice (`[N]dS`) operator takes an amount (N) and a number of sides (S), and\nreturns a list of N random numbers between 1 and S. For example: `4d6` may\nreturn `[6, 3, 2, 4]`. Using a `%` as the second operand is shorthand for \nrolling a d100, and a using `f` is shorthand for \u00b11 fudge dice.\n\nThe fudge dice (`[N]uS`) operator is interchangeable with the dice operator,\nbut makes the dice range from -S to S instead of 1 to S. This includes 0.\n\nA wild dice (`[N]wS`) roll is special. The last roll in this set is called the\n\"wild die\". If this die's roll is the maximum value, the second-highest roll\nin the set is set to the maximum value. If its roll is the minimum, then\nboth it and the highest roll in the set aer set to zero. Then another die is\nrolled. If this roll is the minimum value again, then ALL die are set to zero.\nIf a single-sided wild die is rolled, the roll behaves like a normal one.\n\nIf N is not specified, it is assumed you want to roll a single die.\n`d6` is equivalent to `1d6`.\n\nRolls can be exploded with the `x` operator, which adds additional dice\nto the set for each roll above a given threshold. If a threshold isn't given,\nit defaults to the maximum possible roll. If the extra dice exceed this\nthreshold, they \"explode\" again! Safeguards are in place to prevent this from\ncrashing the parser with infinite explosions.\n\nYou can make the parser re-roll dice below a certain threshold with the `r`\nand `rr` operators. The single `r` variety allows the new roll to be below\nthe threshold, whereas the double variety's roll *changes* the roll range to\nhave a minimum of the threshold. The threshold defaults to the minimum roll.\n\nThe highest, middle or lowest rolls or list entries can be selected with\n(`^` or `h`), (`m` or `o`), or (`v` or `l`) respectively.\n`6d6^3` will keep the highest 3 rolls, whereas `6d6v3` will select\nthe lowest 3 rolls. If a number isn't specified, it defaults to keeping all\nbut one for highest and lowest, and all but two for the middle. If a negative\nvalue is given as the operand for any of these operators, this operation will\ndrop that many elements from the result. For example, `6d6^-2` will drop the\ntwo lowest values from the set, leaving the 4 highest. Zero has no effect.\n\nA variant of the \"explode\" operator is the `a` (\"again\") operator. Instead of\nre-rolling values equal to or greater than the threshold (or max value), this\noperator doubles values *equal* to the provided threshold (or max value). When\nno right-side operand is specified, the left side must be a dice expression.\n\nThere are two operators for taking a set of rolls or numbers and counting the\nnumber of elements at or above a certain threshold, or \"successes\". Both\nrequire a right-hand operand for the threshold. The first, `e`, only counts\nsuccesses. The second, `f`, counts successes minus failures, which are when\na roll is the minimum possible value for the die element, or 1 for lists.\n\nA list or set of rolls can be turned into an integer with the total (`t`)\noperator. `6d1t` will return `6` instead of `[1, 1, 1, 1, 1, 1]`.\nApplying integer operations to a list of rolls will total them automatically.\n\nA set of dice rolls can be sorted with the sort (`s`) operator. `4d6s`\nwill not change the return value, but the dice will be sorted from lowest to\nhighest.\n\nThe `+-` operator is a special prefix for sets of rolls and lists. It\nnegates odd roles within a list. Example: `[1, 2, 3]` -> `[-1, 2, -3]`.\nThere is also a negate (`-`) operator, which works on either single\nelements, sets or rolls, or lists. There is also an identity `+` operator.\n\nValues can be added or subtracted from each element of a list or set of rolls\nwith the point-wise add (`.+`) and subtract (`.-`) operators. For example:\n`4d1 .+ 3` will return `[4, 4, 4, 4]`.\n\nBasic integer operations are also available: `(16 / 8 * 4 - 2 + 1) % 4 -> 3`.\n\n\nFinally, there are two operators for building and extending lists. To build a\nlist, use a comma to separate elements. If any comma-seperated item isn't a\nscalar (e.g. a  roll), it is flattened into one by taking its total. The\n\"extend\" operator (`|`) is used to merge two lists into one, or append single\nelements to the beginning or end of a list.\n\n### Python API\n\nThe calls to `dice.roll()` above may be replaced with `dice.roll_min()` or\n`dice.roll_max()` to force ALL rolls to their highest or lowest values\nrespectively. This might be useful to see what the minimum and maximum\npossible values for a given expression are. Beware that this causes wild dice\nrolls to act like normal ones, and rolls performed as explosions are not\nforced high or low.\n\nThe `roll()` function and variants take a boolean `raw` parameter which\nmakes the library return the element instead of the result. Note that the \n`evaluate_cached` method is called as part of `roll()`, which populates\n`element.result`. Calling `element.evaluate()` will not reset this value.\n\nTo display a verbose breakdown of the element tree, the\n`dice.utilities.verbose_print(element)` function is available.\nIf `element.result` has not yet been populated, the function calls\n`evaluate_cached()` first. Keep this in mind if you want to print the result\nof an evaluation with custom arguments. `verbose_print()` returns a `str`.\n\nMost evaluation errors will raise `DiceError` or `DiceFatalError`, both of\nwhich are subclasses of `DiceBaseError`. These exceptions have a method\nnamed `pretty_print`, which will output a string indicating where the error\nhappened::\n\n```python-repl\n>>> try:\n...   dice.roll('1/0')\n... except dice.DiceBaseException as e:\n...   print(e.pretty_print())\n...\n1/0\n  ^ Division by zero\n>>>\n```\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A library for parsing and evaluating dice notation",
    "version": "4.0.0",
    "project_urls": {
        "homepage": "https://github.com/borntyping/python-dice"
    },
    "split_keywords": [
        "dice"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b575bf7ef10ce7f9a8d17e127e77092505368999e6bd86deab8eb9a74b2103ec",
                "md5": "8eae6eb6d6c88479cc933cc3cc0dc1a8",
                "sha256": "59aa1f7b23846b32a618697534429fec80be3a1087b4f934022dcdb99cf1417f"
            },
            "downloads": -1,
            "filename": "dice-4.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8eae6eb6d6c88479cc933cc3cc0dc1a8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 22042,
            "upload_time": "2023-05-18T17:22:59",
            "upload_time_iso_8601": "2023-05-18T17:22:59.548661Z",
            "url": "https://files.pythonhosted.org/packages/b5/75/bf7ef10ce7f9a8d17e127e77092505368999e6bd86deab8eb9a74b2103ec/dice-4.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "723ea07b66d345678cd277df76fdf51cb4ffc1054492efcd674a7b30f49a80bf",
                "md5": "e28d076c240f9badd70463e3dd45c826",
                "sha256": "7a1bfd68f21abf245f333de89721cd30379b5413c774a9d34a6b4123c526815c"
            },
            "downloads": -1,
            "filename": "dice-4.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "e28d076c240f9badd70463e3dd45c826",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 22252,
            "upload_time": "2023-05-18T17:23:34",
            "upload_time_iso_8601": "2023-05-18T17:23:34.224054Z",
            "url": "https://files.pythonhosted.org/packages/72/3e/a07b66d345678cd277df76fdf51cb4ffc1054492efcd674a7b30f49a80bf/dice-4.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-18 17:23:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "borntyping",
    "github_project": "python-dice",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "dice"
}
        
Elapsed time: 0.07017s