Metadata-Version: 2.1
Name: dycelib
Version: 0.2.0
Summary: Simple Python tools for dice-based probabilities
Home-page: https://posita.github.io/dyce/0.2/
Author: Matt Bogosian
Author-email: matt@bogosian.net
License: MIT License
Description: <!-- -*- encoding: utf-8 -*-
          !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
          !!!!!!!!!!!!!!! IMPORTANT: READ THIS BEFORE EDITING! !!!!!!!!!!!!!!!
          !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
          Please keep each sentence on its own unwrapped line.
          It looks like crap in a text editor, but it has no effect on rendering, and it allows much more useful diffs.
          Thank you!
        
          WARNING: THIS DOCUMENT MUST BE SELF-CONTAINED.
          ALL LINKS MUST BE ABSOLUTE.
          This file is used on GitHub and PyPi (via setup.py).
          There is no guarantee that other docs/resources will be available where this content is displayed.
        -->
        
        *Copyright and other protections apply.
        Please see the accompanying `LICENSE` file for rights and restrictions governing use of this software.
        All rights not expressly waived or licensed are reserved.
        If that file is missing or appears to be modified from its original, then please contact the author before viewing or using this software in any capacity.*
        
        [![v0.2.0 Version](https://img.shields.io/pypi/v/dycelib/0.2.0.svg)](https://pypi.python.org/pypi/dycelib/0.2.0)
        [![v0.2.0 Development Stage](https://img.shields.io/pypi/status/dycelib/0.2.0.svg)](https://pypi.python.org/pypi/dycelib/0.2.0)
        [![v0.2.0 License](https://img.shields.io/pypi/l/dycelib/0.2.0.svg)](http://opensource.org/licenses/MIT)
        [![v0.2.0 Supported Python Versions](https://img.shields.io/pypi/pyversions/dycelib/0.2.0.svg)](https://pypi.python.org/pypi/dycelib/0.2.0)
        [![v0.2.0 Supported Python Implementations](https://img.shields.io/pypi/implementation/dycelib/0.2.0.svg)](https://pypi.python.org/pypi/dycelib/0.2.0)
        
        # `dyce` - Simple Python tools for dice-based probabilities
        
        [![Build Status](https://travis-ci.com/posita/dyce.svg?version=v0.2.0)](https://travis-ci.com/posita/dyce?version=v0.2.0)
        
        > :point_up: *Curious about integrating your project with the above services?
          Jeff Knupp ([**@jeffknupp**](https://github.com/jeffknupp)) [describes how](https://www.jeffknupp.com/blog/2013/08/16/open-sourcing-a-python-project-the-right-way/).*
        
        ``dyce`` is a pure-Python library for exploring dice probabilities designed to be immediately and broadly useful with minimal additional investment beyond basic knowledge of Python.
        ``dyce`` is an [AnyDice](https://anydice.com/) replacement that leverages Pythonic syntax and operators for rolling dice and computing weighted outcomes.
        While Python is not as terse as a dedicated grammar, it is quite sufficient, and often more expressive.
        Those familiar with various [game notations](https://en.wikipedia.org/wiki/Dice_notation) should be able to adapt quickly.
        
        ``dyce`` is fairly low level by design, prioritizing ergonomics and composability.
        While any AnyDice generously affords a very convenient platform for simple computations, its idiosyncrasies can lead to [confusion](https://duckduckgo.com/?q=site%3Astackexchange.com+title%3Aanydice) and complicated workarounds.
        Like AnyDice, it avoids stochastic simulation, but instead determines outcomes through enumeration and discrete computation.
        Unlike AnyDice, however, it is an open source library that can be run locally and modified as desired.
        Because it exposes Python primitives rather than defining a dedicated grammar and interpreter, one can easily integrate it with other Python tools and libraries.
        In an intentional departure from [RFC 1925, § 2.2](https://datatracker.ietf.org/doc/html/rfc1925#section-2), it provides minor formatting conveniences for casual tinkering.
        However, it really shines when used in larger contexts such as [Matplotlib](https://matplotlib.org/) or [Jupyter](https://jupyter.org/).
        
        ``dyce`` should be sufficient to replicate or replace AnyDice and most other dice probability modeling libraries.
        It strives to be [fully documented](https://posita.github.io/dyce/0.2/) and relies heavily on examples to develop understanding.
        If you find its functionality or documentation confusing or lacking in any way, please consider [contributing an issue](contrib.md) to start a discussion.
        Source code is [available on GitHub](https://github.com/posita/dyce).
        
        ## A Taste
        
        ``dyce`` provides two key primitives. ``H`` objects represent histograms for modeling or outcomes and individual dice, and ``P`` objects represent pools (ordered sequences) of histograms.
        Both support a variety of operations:
        
        ```python
        >>> from dyce import H
        >>> d6 = H(6)  # a standard six-sided die
        >>> 2@d6 + 4  # 2d6 + 4
        H({6: 1, 7: 2, 8: 3, 9: 4, 10: 5, 11: 6, 12: 5, 13: 4, 14: 3, 15: 2, 16: 1})
        >>> d6.lt(d6)  # how often a first six-sided die shows a face less than a second
        H({0: 21, 1: 15})
        >>> abs(d6 - d6)  # subtract the least of two six-sided dice from the greatest
        H({0: 6, 1: 10, 2: 8, 3: 6, 4: 4, 5: 2})
        
        >>> from dyce import P
        >>> p_2d6 = 2@P(d6)  # a pool of two six-sided dice
        >>> p_2d6.h()  # pools can be collapsed into histograms
        H({2: 1, 3: 2, 4: 3, 5: 4, 6: 5, 7: 6, 8: 5, 9: 4, 10: 3, 11: 2, 12: 1})
        >>> p_2d6 == 2@d6  # pools and histograms are comparable
        True
        >>> p_2d6.h(0)  # select individual dice in pools (ordered least to greatest)
        H({1: 11, 2: 9, 3: 7, 4: 5, 5: 3, 6: 1})
        >>> print(_.format(width=65))  # convenience formatting
        avg |    2.53
          1 |  30.56% |###############
          2 |  25.00% |############
          3 |  19.44% |#########
          4 |  13.89% |######
          5 |   8.33% |####
          6 |   2.78% |#
        >>> p_2d6.h(-1)
        H({1: 1, 2: 3, 3: 5, 4: 7, 5: 9, 6: 11})
        >>> print(_.format(width=65))
        avg |    4.47
          1 |   2.78% |#
          2 |   8.33% |####
          3 |  13.89% |######
          4 |  19.44% |#########
          5 |  25.00% |############
          6 |  30.56% |###############
        
        ```
        
        Translation of examples from [`markbrockettrobson/python_dice`](https://github.com/markbrockettrobson/python_dice#usage):
        
        ```python
        >>> _ = """
        ...   …
        ...   "VAR save_roll = d20",
        ...   "VAR burning_arch_damage = 10d6 + 10",
        ...   "VAR pass_save = ( save_roll >= 10 ) ",
        ...   "VAR damage_half_on_save = burning_arch_damage // (pass_save + 1)",
        ...   "damage_half_on_save"
        ...   …
        ... """
        >>> save_roll = H(20)
        >>> burning_arch_damage = 10@H(6) + 10
        >>> pass_save = save_roll.ge(10)
        >>> damage_half_on_save = burning_arch_damage // (pass_save + 1)
        >>> res = damage_half_on_save
        >>> print(res.format(width=0))
        {avg: 32.49, 10:  0.00%, ..., 18:  2.44%, 19:  4.02%, 20:  5.75%, 21:  7.21%, 22:  7.93%, 23:  7.68%, 24:  6.55%, 25:  4.89%, 26:  3.19%, ..., 41:  2.53%, 42:  2.83%, 43:  3.07%, 44:  3.22%, 45:  3.27%, 46:  3.22%, 47:  3.07%, 48:  2.83%, 49:  2.53%, ..., 70:  0.00%}
        >>> # ... or, in the alternative ...
        >>> save_roll.substitute(
        ...   lambda h, f:
        ...     burning_arch_damage // 2 if f >= 10
        ...     else burning_arch_damage
        ... ) == res
        True
        
        ```
        
        ```python
        >>> name = 1 + (2@H(3)) - 3 * (4@H(2)) // 5  # VAR name = 1 + 2d3 - 3 * 4d2 // 5
        >>> print(name.format(width=0))
        {avg: 1.75, -1:  3.47%, 0: 13.89%, 1: 25.00%, 2: 29.17%, 3: 19.44%, 4:  8.33%, 5:  0.69%}
        
        >>> out = 3 * (1 + 2@H(4))  # VAR out = 3 * ( 1 + 1d4 )
        >>> print(out.format(width=0))
        {avg: 18.00, 9:  6.25%, 12: 12.50%, 15: 18.75%, 18: 25.00%, 21: 18.75%, 24: 12.50%, 27:  6.25%}
        
        >>> g = H(4).ge(2) & H(20).ne(2)  # VAR g = (1d4 >= 2) AND !(1d20 == 2)
        >>> h = H(4).ge(2) | H(20).ne(2)  # VAR h = (1d4 >= 2) OR !(1d20 == 2)
        >>> print(g.format(width=0))
        {avg: 0.71, 0: 28.75%, 1: 71.25%}
        >>> print(h.format(width=0))
        {avg: 0.99, 0:  1.25%, 1: 98.75%}
        
        >>> abs_ = abs(H(6) - H(6))  # VAR abs = ABS( 1d6 - 1d6 )
        >>> print(abs_.format(width=0))
        {avg: 1.94, 0: 16.67%, 1: 27.78%, 2: 22.22%, 3: 16.67%, 4: 11.11%, 5:  5.56%}
        
        >>> _ = P(4@H(7), 2@H(10)).h(-1)  # MAX(4d7, 2d10)
        >>> print(_.format(width=0))
        {avg: 16.60, 4:  0.00%, 5:  0.02%, 6:  0.07%, 7:  0.21%, ..., 25:  0.83%, 26:  0.42%, 27:  0.17%, 28:  0.04%}
        >>> _ = P(H((50,)), P(100)).h(0)  # MIN(50, d%)
        >>> print(_.format(width=0))
        {avg: 37.75, 1:  1.00%, 2:  1.00%, 3:  1.00%, ..., 47:  1.00%, 48:  1.00%, 49:  1.00%, 50: 51.00%}
        
        ```
        
        Translation of examples from [`LordSembor/DnDice`](https://github.com/LordSembor/DnDice#examples):
        
        ```python
        >>> _ = """
        ...   from DnDice import d, gwf
        ...   single_attack = 2*d(6) + 5
        ...   …
        ...   great_weapon_fighting = gwf(2*d(6)) + 5
        ...   …
        ...   # comparison of the probability
        ...   print(single_attack.expectancies())
        ...   print(great_weapon_fighting.expectancies())
        ...   …
        ... """
        
        >>> single_attack = 2@H(6) + 5
        >>> print(single_attack.format(width=0))
        {avg: 12.00, 7:  2.78%, 8:  5.56%, 9:  8.33%, 10: 11.11%, 11: 13.89%, 12: 16.67%, 13: 13.89%, 14: 11.11%, 15:  8.33%, 16:  5.56%, 17:  2.78%}
        
        >>> def gwf(h, face):
        ...   return h if face in (1, 2) else face
        >>> great_weapon_fighting = 2@(H(6).substitute(gwf)) + 5  # reroll either die if it's a one or two
        >>> print(great_weapon_fighting.format(width=0))
        {avg: 13.33, 7:  0.31%, 8:  0.62%, 9:  2.78%, 10:  4.94%, 11:  9.88%, 12: 14.81%, 13: 17.28%, 14: 19.75%, 15: 14.81%, 16:  9.88%, 17:  4.94%}
        
        ```
        
        ```python
        >>> _ = """
        ...   from DnDice import d, advantage, plot
        ...
        ...   normal_hit = 1*d(12) + 5
        ...   critical_hit = 3*d(12) + 5
        ...
        ...   result = d()
        ...   for value, probability in advantage():
        ...   	if value == 20:
        ...   		result.layer(critical_hit, weight=probability)
        ...   	elif value + 5 >= 14:
        ...   		result.layer(normal_hit, weight=probability)
        ...   	else:
        ...   		result.layer(d(0), weight=probability)
        ...   result.normalizeExpectancies()
        ...   …
        ... """
        
        >>> normal_hit = H(12) + 5
        >>> print(normal_hit.format(width=0))
        {avg: 11.50, 6:  8.33%, 7:  8.33%, 8:  8.33%, ..., 16:  8.33%, 17:  8.33%}
        
        >>> critical_hit = 3@H(12) + 5
        >>> print(critical_hit.format(width=0))
        {avg: 24.50, 8:  0.06%, 9:  0.17%, 10:  0.35%, 11:  0.58%, ..., 38:  0.58%, 39:  0.35%, 40:  0.17%, 41:  0.06%}
        
        >>> advantage = (2@P(20)).h(-1)
        >>> def crit(h, f):
        ...   if f == 20: return critical_hit
        ...   elif f + 5 >= 14: return normal_hit
        ...   else: return 0
        >>> print(advantage.substitute(crit).format(width=0))
        {avg: 10.93, 0: 16.00%, 6:  6.19%, 7:  6.19%, ..., 16:  6.44%, 17:  6.50%, 18:  0.37%, 19:  0.44%, ..., 40:  0.02%, 41:  0.01%}
        
        ```
        
        See [the docs](https://posita.github.io/dyce/0.2/) for a much more thorough treatment, including detailed examples.
        
        ## License
        
        `dyce` is licensed under the [MIT License](https://opensource.org/licenses/MIT).
        See the accompanying `LICENSE` file for details.
        Source code is [available on GitHub](https://github.com/posita/dyce).
        
        ## Issues
        
        If you find a bug, or want a feature, please [file an issue](https://github.com/posita/dyce/issues) (if it has not already been filed).
        If you are willing and able, consider [contributing](https://posita.github.io/dyce/latest/contrib/).
        
Platform: UNKNOWN
Classifier: Topic :: Education
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: doc
