{ "info": { "author": "Finian Blackett", "author_email": "spamsuckersunited@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: OS Independent", "Programming Language :: Python :: 3.6" ], "description": "# py-rolldice\nA python module for parsing string representation (aka Dice Notation) of dice rolls and rolling said dice.\n\n## Usage:\nUsage is very simple. Simply install py-rolldice with:\n```\npython -m pip install py-rolldice\n```\n Then import it as usual and run the roll_dice function:\n```\nimport rolldice\nresult, explanation = rolldice.roll_dice('12d6 + 10')\n```\nThat's it. The function takes the string representation of your dice roll and will return a tuple containing the numerical result and a constructed representation string, in that order.\n#### Functions and Floats:\nBy default the dice roller will parse floats and a limited set of function calls. This can be disabled if you want:\n```\nroll_dice('abs(-2)') # Will work\nroll_dice('abs(-2)', functions=False) # Won't work\n\nroll_dice('3 / 2') # Division will return a float\nroll_dice('3 / 2', floats=False) # Division will be floor division\n\nroll_dice('4.5') # Will work\nroll_dice('4.5', floats=False) # Won't work\n```\nThese also work on the DiceBag class.\n## Dice Syntax:\n\nDice syntax is based on [CritDice](https://www.critdice.com/roll-advanced-dice/) syntax. \n#### Basic syntax:\n```\n4d10 + 17: Roll a 10-sided die 4 times and add 17 to the result\n2d20 - 3: Roll a 20 sided die 2 times and subtract 3\n1d4 * 3: Roll a 4 sided die once and multiply by 3\nd4 * 3: Same as above, leaving out the number of dice will default to 1\n5d6 / 3: Roll 5d6 and divide by 3\n5d6 // 3: Same as above but floor division\n2d10 ** 1d20: Roll 2d10 and exponentiate to the power of 1d20. Completely useless. Please never do this.\n1d6 ** 1d6 ** 1d6 ** 1d6: OH GOD PLEASE NO\n```\nYou get the idea. Spaces are optional and can actually be inserted anywhere in the rolls. `1 5 d 2 0 + 3 5` actually works. Operators follow PEMDAS. e.g: \n```\nroll_dice('2*3+5') # Will return 11, following PEMDAS\nroll_dice('2*(3+5)') # Will return 16, using parentheses precedence\n```\nDice rolling also supports some functions, for no reason other than because I can.\n```\nabs(2d6-7): Absolute value of 2d6-7\ngcd(2d6, 2d6): GCD of 2d6 and 2d6\nlcm(7, 4d20): LCM of 7 and 4d20\nfloor(2d6 / 2): Floor of 2d6 / 2\nceil(2d6 / 2): Ceiling of 2d6 / 2\nprime(2d6): 1 if 2d6 is prime else 0\n```\nOther functions may be added.\n##### Note about exponentiation:\nI have made a check to attempt to protect your soft, fragile CPUs from the menace of the pow() function, but you still have to be careful.\nExponentiation is right-associative, because math.\n#### Advanced syntax:\n##### Keep Highest (K):\nUsed to (K)eep the highest roll. Can be followed by a number to keep that number of dice or by nothing to indicate keeping only one.\n```\n4d10K: Roll 4d10 and keep only the highest roll\n7d12K3: Roll 7d12 and keep the highest three rolls\n7d12K3 + 4: Roll as above then add 4\n```\n\n##### Keep Lowest (k):\nSame as above but keeping the lowest.\n```\n3d3k: Roll 3d3 and keep the lowest roll\n100d6k99: Roll 100d6 and keep all but the highest.\n2d20k: Roll 2d20 and keep the lowest. This is a disadvantage roll in 5e\n```\n\n##### Drop Highest (X):\nUsed to drop the highest roll. Can be followed by a number to drop that number of dice or by nothing to indicate dropping just one.\n```\n6d8X: Roll 6d8 and drop the lowest\n5d10X3 Roll 5d10 and drop the highest 3\n```\n\n##### Drop Lowest (x):\nYou get the idea.\n\n##### Exploding Dice (!):\nExploding dice is usually known as 'Rule of 6' or 'Rule of 10,' as it is in Shadowrun. As long as the roll passes the specified comparison, another dice is rolled and added to the total. This process repeats until a number that does not match the comparison is rolled.\n```\n2d20!: Roll 2d20 and explode every time a 20 is rolled\n7d20!3: Roll 7d20 and explode every time a 3 is rolled\n4d6! Roll 4d6 and explode every time a 6 is rolled\nd20!>10: Roll a d20 and explode every time a number higher than 10 is rolled\n3d12!<2: Roll 3d12 and explode every time a 1 is rolled.\n```\n\n##### Count Successes (> or <):\nCounts the number of rolls above or below a certain value.\n```\n4d20>19: Rolls 4d20 and counts the number of rolls above 19\n10d12<3: Rolls 10d12 and counts the number of rolls below 3\n```\n\n##### Count failures (f):\nAddition to counting successes to specify an additional 'failure' condition. Each failure will decrease the score by 1 while each success will still increase by 1.\n```\n10d10>6f<3: Roll 10d10 and count successes over 6 and failures under 3\n4d20<5f>19: Roll 4d20 and count successes under 5 and failures over 19\n5d100<5f>3: Invalid, you cannot have your failure and success comparison both be more than or less than.\n```\n\n##### Penetrating Dice (!p):\nPenetrating dice are the same as exploding dice except all rolls from explosions are added with a -1 modifier.\n```\n2d20!: Roll 2d20 and penetrate every time a 20 is rolled\n7d20!3: Roll 7d20 and penetrate every time a 3 is rolled\n4d6! Roll 4d6 and penetrate every time a 6 is rolled\nd20!>10: Roll a d20 and penetrate every time a number higher than 10 is rolled\n3d12!<2: Roll 3d12 and penetrate every time a 1 is rolled.\n```\n\n##### Individual modifiers (a, s, m):\nAdd, subtract, or multiply each individual dice roll.\n```\n2d20a3: Add three to each roll\n4d12s4: Subtract four from each roll\n6d4m3: Multiply each roll by 3\n```\n\n##### Reroll on number (R or r):\nReroll on 1, a specific number, or a comparison. R to reroll until condition is not met and r to reroll just once.\n```\n4d20R: Reroll until there are no ones\n5d6r6: Reroll once on a 6\n7d12R>4: Reroll until there are no numbers above 4\n``` \n\n## Dicebag Class:\n\nThe dicebag class provides an easy way to store a certain roll and reroll it. \nUsage:\n```\nfrom rolldice import *\ndicebag = DiceBag() #Initializes with a roll of '0'\n# OR\ndicebag = DiceBag('12d6 + 2d20K') #Initializes with a roll of '12d6 + 2d20K'\n\nresult, explanation = dicebag.roll_dice() #Repeat as needed\n\n# The last roll is also stored in dicebag.lastroll\nassert result = dicebag.last_roll and explanation = dicebag.last_explanation\n```\nThat's all there is to it!\n\n## Planned features:\n- [X] Allow for exploding on specific numbers instead of just comparisons\n- [X] Count failures as in CritDice syntax\n- [X] Penetrating dice\n- [X] DiceBag object for repeating dice rolls and storing as an object.\n- [X] Rerolling once or arbitrary number of times on a given condition\n- [X] Parse PEMDAS properly\n- [X] Safe mathematical parser\n- [X] Even better AST parser supporting all the goodies\n## Suggestions\nIf you have any other ideas for features, just make a suggestion and I'll see what I can do!\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ThePlasmaRailgun/py-rolldice", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "py-rolldice", "package_url": "https://pypi.org/project/py-rolldice/", "platform": "", "project_url": "https://pypi.org/project/py-rolldice/", "project_urls": { "Homepage": "https://github.com/ThePlasmaRailgun/py-rolldice" }, "release_url": "https://pypi.org/project/py-rolldice/0.3.9/", "requires_dist": [ "regex" ], "requires_python": "", "summary": "A module for parsing dice notation", "version": "0.3.9" }, "last_serial": 4098531, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "8f6a5025be6b0ec7c0810b02e1140d85", "sha256": "99a415ed6a0070905354e9a5c99a416dad706b1edac7b7e88458704234d79412" }, "downloads": -1, "filename": "py_rolldice-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8f6a5025be6b0ec7c0810b02e1140d85", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7690, "upload_time": "2018-07-13T22:14:03", "url": "https://files.pythonhosted.org/packages/da/09/ba422d4dc969159e8f8307321f6a0b3231d75cac77b5f42e74c8bf89546e/py_rolldice-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0cc79ac08a0f72f56ba59b95ecb3d12a", "sha256": "fb393610e0228e2a19c9033c55052419898cf7d247485d700420c1ccad01cb9f" }, "downloads": -1, "filename": "py-rolldice-0.1.0.tar.gz", "has_sig": false, "md5_digest": "0cc79ac08a0f72f56ba59b95ecb3d12a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7603, "upload_time": "2018-07-13T22:14:04", "url": "https://files.pythonhosted.org/packages/4c/39/16618dad49951d632b7ac2c451f89b225d9504e3dafa05f86602963d8efc/py-rolldice-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "eb70022b46e7158b28bc10d5a368d0f9", "sha256": "f8798867e383c36a415a838a67565cba362d37b476421e5c3f21ebee469d469d" }, "downloads": -1, "filename": "py_rolldice-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "eb70022b46e7158b28bc10d5a368d0f9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7551, "upload_time": "2018-07-14T19:42:30", "url": "https://files.pythonhosted.org/packages/6d/ef/9fc755ba4b9f3d5e66989501a286395e8a93c30101c7bc13a41d6bbfe8f1/py_rolldice-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "348678624dde202699052cab7716e17d", "sha256": "68db251b30e2738ef11951f0091dc64078785c41c946c17e8f776191cb1f243b" }, "downloads": -1, "filename": "py-rolldice-0.1.1.tar.gz", "has_sig": false, "md5_digest": "348678624dde202699052cab7716e17d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7479, "upload_time": "2018-07-14T19:42:32", "url": "https://files.pythonhosted.org/packages/6c/1f/1c4c76135e6efda1e2639a224629d518f595b264b44bdcb46a1ac00eb87e/py-rolldice-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "566344a122a5ba6559a9882c2f023f92", "sha256": "addb62b568b843efb8ee4b7394f73fd7c48bbafcc0bf24e7365148f55bd7d8a3" }, "downloads": -1, "filename": "py_rolldice-0.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "566344a122a5ba6559a9882c2f023f92", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7534, "upload_time": "2018-07-14T20:19:03", "url": "https://files.pythonhosted.org/packages/86/68/e9994a486c0043884919a66d496258457d83afe84a3b4160491c372b8da3/py_rolldice-0.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c6cc42d2edd46602277d703e96fa5bca", "sha256": "719db8039fce157919ec96169a58e97e3636f7cf00b2e42eee8deb27c4a4926c" }, "downloads": -1, "filename": "py-rolldice-0.1.2.tar.gz", "has_sig": false, "md5_digest": "c6cc42d2edd46602277d703e96fa5bca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7478, "upload_time": "2018-07-14T20:19:04", "url": "https://files.pythonhosted.org/packages/62/47/4f8c9f3a7f674df24b2f5fc931235ce14e72b9259eab50a7a79854ebb466/py-rolldice-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "2f9e79b9d401502e48a66905f7ab1e95", "sha256": "15f93958ef1ef692b9efa94e4b9bd121755ebff4d46de1d5d816ab624ebd0e80" }, "downloads": -1, "filename": "py_rolldice-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "2f9e79b9d401502e48a66905f7ab1e95", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7563, "upload_time": "2018-07-15T17:00:26", "url": "https://files.pythonhosted.org/packages/33/f4/31d5133a16321ac410cf14912e7daa05cdce0e8934861f75ef5be03e536d/py_rolldice-0.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b511e1da58d92f240b9ac179437946ed", "sha256": "529e072708a5374a103c23ea63e000416a7300d2b03442cc6b112bf0b0285b1c" }, "downloads": -1, "filename": "py-rolldice-0.1.3.tar.gz", "has_sig": false, "md5_digest": "b511e1da58d92f240b9ac179437946ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7516, "upload_time": "2018-07-15T17:00:27", "url": "https://files.pythonhosted.org/packages/68/77/be2e88cff350d9724d7bcaed60a51c3ef2d6fcd92064b8842542f1ae6e78/py-rolldice-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "14a952b9fed18e66e3a50ace93dbd244", "sha256": "3674ab7eba6a285317dd83d2428858585f830afbb17aebfcd26f6e44468123dc" }, "downloads": -1, "filename": "py_rolldice-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "14a952b9fed18e66e3a50ace93dbd244", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7551, "upload_time": "2018-07-15T20:17:21", "url": "https://files.pythonhosted.org/packages/36/fc/e3bb55c72358469c49c1098b1b98c7a25ec13c69bfb2aacb35f7213c20d6/py_rolldice-0.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6cd677c70e356a1654661c4bd87c797f", "sha256": "8238676ed70c6ac32f56902fa5b29e1b220a07baa92529dfdc1b3af53a898b5d" }, "downloads": -1, "filename": "py-rolldice-0.1.4.tar.gz", "has_sig": false, "md5_digest": "6cd677c70e356a1654661c4bd87c797f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7452, "upload_time": "2018-07-15T20:17:22", "url": "https://files.pythonhosted.org/packages/67/71/f859a39748a35ea0e996cfe17bf3eebc43ebba9027a3a725efbe0941910b/py-rolldice-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "eca7ce26f9b3d619aebe550f0c8388cf", "sha256": "e72c4f441eed11c70484c51a36e10ded905c97004b19d853b571d6b35a4c52c5" }, "downloads": -1, "filename": "py_rolldice-0.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "eca7ce26f9b3d619aebe550f0c8388cf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7548, "upload_time": "2018-07-15T20:29:26", "url": "https://files.pythonhosted.org/packages/cd/d1/f5eb78f327eb61ff2061d479e3c28e69232eed3f6d2a1ce0281f14e9ee2f/py_rolldice-0.1.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "04ce8e457635ec208d0187bead8315c0", "sha256": "e6b45f4c07c83c0029d75369eaf727ec24e36fcf469143f179eddd8e510e277d" }, "downloads": -1, "filename": "py-rolldice-0.1.5.tar.gz", "has_sig": false, "md5_digest": "04ce8e457635ec208d0187bead8315c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7462, "upload_time": "2018-07-15T20:29:27", "url": "https://files.pythonhosted.org/packages/0c/db/9dd2d97f2a3d3e137a194baef5c968cded97b81f3ec9c7e9d0372bd9b893/py-rolldice-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "ee1a7f1a786c434ffeb978f5aadd8a39", "sha256": "5a7a9bc191bee9c757281570ffc1aaf14d8d1b62a4f5048d66da823d5603232a" }, "downloads": -1, "filename": "py_rolldice-0.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "ee1a7f1a786c434ffeb978f5aadd8a39", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8254, "upload_time": "2018-07-15T22:43:21", "url": "https://files.pythonhosted.org/packages/67/f0/10cf30699650ee19e2fc7ee440fb37047171f50b7cf5259a39cac1f7f243/py_rolldice-0.1.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dcb49acfa08db2e1738f612b4eedbf30", "sha256": "1ffdd66b37e203b645ac7d54758d8b56fd77f482d5c115accd7983a08250dd52" }, "downloads": -1, "filename": "py-rolldice-0.1.6.tar.gz", "has_sig": false, "md5_digest": "dcb49acfa08db2e1738f612b4eedbf30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8182, "upload_time": "2018-07-15T22:43:22", "url": "https://files.pythonhosted.org/packages/0f/c7/cea450564f94202f71dc26c82331bddf719add0c8533c5eb6c7e7753dd8d/py-rolldice-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "ce3e6431ea81451f6909412857311acf", "sha256": "29326ae8855eda54f11f099d663805add4ba0322e7daac9d0464f9cc6f6a7c63" }, "downloads": -1, "filename": "py_rolldice-0.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "ce3e6431ea81451f6909412857311acf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8253, "upload_time": "2018-07-15T22:49:21", "url": "https://files.pythonhosted.org/packages/d2/3b/ad2af7e774a1bbbf6508d78aafd1dfb45433fe1e9f567c7d2dee2c9b2c08/py_rolldice-0.1.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "30f22aac8450dc51b9e9b0b8d3abab78", "sha256": "0f7dce9ac09626320fdd73cdb9f72e881b3780d00929b36bb30447d98e225a6f" }, "downloads": -1, "filename": "py-rolldice-0.1.7.tar.gz", "has_sig": false, "md5_digest": "30f22aac8450dc51b9e9b0b8d3abab78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8181, "upload_time": "2018-07-15T22:49:22", "url": "https://files.pythonhosted.org/packages/d9/e2/b76dc0c1ee1f34b727fce503283a4422aca17be59caf41e86146f4723bdf/py-rolldice-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "5b25e435de8f768c4c2805f5e60972ae", "sha256": "9c55bb75f9f38e515b14d6042261fce4c5700715a48da900bc4437039cdbcae1" }, "downloads": -1, "filename": "py_rolldice-0.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "5b25e435de8f768c4c2805f5e60972ae", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8211, "upload_time": "2018-07-15T23:34:34", "url": "https://files.pythonhosted.org/packages/a5/c3/f9442723c3128f9b4d81faa95dc2490d4608edc0ea60111543d2e42b3435/py_rolldice-0.1.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1cafade054bba4fd3b537b67e07b83f2", "sha256": "55a30bcf2b83828bf7d9ba76d2a00a903e7e4979541b6df691a52b127b941006" }, "downloads": -1, "filename": "py-rolldice-0.1.8.tar.gz", "has_sig": false, "md5_digest": "1cafade054bba4fd3b537b67e07b83f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8135, "upload_time": "2018-07-15T23:34:35", "url": "https://files.pythonhosted.org/packages/a1/56/0740b9cdf35286c1945b0c0ad0629d5532969bd77c7097c981d72f521f4e/py-rolldice-0.1.8.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "eb96e9038271fc86bd7cd8bdf8a020d8", "sha256": "553b87bf3c308b9e58c7494703b8719a6d81330c4fa297eee9dac8049edef4f1" }, "downloads": -1, "filename": "py_rolldice-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "eb96e9038271fc86bd7cd8bdf8a020d8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9925, "upload_time": "2018-07-16T18:52:48", "url": "https://files.pythonhosted.org/packages/78/58/595880c1ca934503b79aa4f8c3115fa3d81d827344fbe81933f1252a111f/py_rolldice-0.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5a40ad050fe19ff4e38300aeec7aba0a", "sha256": "11fa9e388d19a688646d5b22b53799378635d86f0919ee9e5e31befc44ffa530" }, "downloads": -1, "filename": "py-rolldice-0.2.0.tar.gz", "has_sig": false, "md5_digest": "5a40ad050fe19ff4e38300aeec7aba0a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9454, "upload_time": "2018-07-16T18:52:49", "url": "https://files.pythonhosted.org/packages/23/34/4062053a57505d89946118786e7e47fa5e139095df9a5f8ddda993d37d43/py-rolldice-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "11c5b77982e6d2504403cab0685ccfc6", "sha256": "8275698390a48efd57ad3d53bb99e1ce1c14ec77be3db0b2c42ba8e6f3419015" }, "downloads": -1, "filename": "py_rolldice-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "11c5b77982e6d2504403cab0685ccfc6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9927, "upload_time": "2018-07-16T19:00:08", "url": "https://files.pythonhosted.org/packages/46/d4/fd1892a1ad4400f9348a48f69055ec6279da88342136f68175c6ab3a8156/py_rolldice-0.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1bfe863f4c1b333ddf149034369ff679", "sha256": "e295e65650574779f450e92e4d87d063aff41c1e855235c38b64b1a9dd2ead05" }, "downloads": -1, "filename": "py-rolldice-0.2.1.tar.gz", "has_sig": false, "md5_digest": "1bfe863f4c1b333ddf149034369ff679", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9472, "upload_time": "2018-07-16T19:00:09", "url": "https://files.pythonhosted.org/packages/70/b5/13e719fe28869979921df875371a63ec5db5478cd66bc7a26b08894ea6e0/py-rolldice-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "8bd291fa8d3272afac16a81a66e601aa", "sha256": "70a788c00a78bc24abb98e034978c5bb8b2f60b4d9822e5ba281b337ea72eba2" }, "downloads": -1, "filename": "py_rolldice-0.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "8bd291fa8d3272afac16a81a66e601aa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9510, "upload_time": "2018-07-16T19:07:36", "url": "https://files.pythonhosted.org/packages/7b/7c/448ba90dd28ad09e4a56b357af60a17a57f03a894308cd128a9246acb90a/py_rolldice-0.2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "72960ce4460972295a2db1bbac912f4f", "sha256": "574c460d271a178a4199165a2d0532a033054f1eca7b04c4eb1d817d90fddb10" }, "downloads": -1, "filename": "py-rolldice-0.2.2.tar.gz", "has_sig": false, "md5_digest": "72960ce4460972295a2db1bbac912f4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9450, "upload_time": "2018-07-16T19:07:37", "url": "https://files.pythonhosted.org/packages/c7/0d/9bcc8a0840c02a23c6ec5a9bb77280b5c5fea14f388dca64c29affe6a0aa/py-rolldice-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "fba561e0915ce2fd0e516b07f73a1f23", "sha256": "baae165488caafc6d74deca9bbcd14df7875d75c2b807a2384e1c99ca752c7c8" }, "downloads": -1, "filename": "py_rolldice-0.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "fba561e0915ce2fd0e516b07f73a1f23", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9513, "upload_time": "2018-07-16T19:17:41", "url": "https://files.pythonhosted.org/packages/38/9f/f5b4041fa4f73cf0e7082104e52f131baaf64ab3f4ae27392f59224aa4cb/py_rolldice-0.2.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a29246bf09660c57d08e19ce686cfc5c", "sha256": "bf0bfd90b9f16c5324c3061d1424bedb26944bedc2db3fb56a9bf820887e0b0a" }, "downloads": -1, "filename": "py-rolldice-0.2.3.tar.gz", "has_sig": false, "md5_digest": "a29246bf09660c57d08e19ce686cfc5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9451, "upload_time": "2018-07-16T19:17:42", "url": "https://files.pythonhosted.org/packages/36/ec/1d81d3156038346173dfc6aeb8568ad0c9d993ea43d6fe5d518b4db09c9a/py-rolldice-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "3196d87cad6800b4c8b5ea96d1746bc6", "sha256": "88acd242483a78e6f812a67b65bc0f4d2f6faa549d70528b69aa30f000306b90" }, "downloads": -1, "filename": "py_rolldice-0.2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "3196d87cad6800b4c8b5ea96d1746bc6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10078, "upload_time": "2018-07-18T01:05:24", "url": "https://files.pythonhosted.org/packages/fe/4b/d690b75587daa2b699fbf2e6f731cbc6fbf2e58944ba10434bf29f17f231/py_rolldice-0.2.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7882e79278517fe2ec4a7e91f882babd", "sha256": "a3114e6b1bb3a23f0dd34be39676c1787a38232cb856d8e24640e102245fbe96" }, "downloads": -1, "filename": "py-rolldice-0.2.4.tar.gz", "has_sig": false, "md5_digest": "7882e79278517fe2ec4a7e91f882babd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10028, "upload_time": "2018-07-18T01:05:25", "url": "https://files.pythonhosted.org/packages/fa/6c/81009cad35010ab51e98da5e9a5922e692b76a2b0cbfa71fe7b18f412da3/py-rolldice-0.2.4.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "7090cbee16ad1afcaa4104be642f13a3", "sha256": "23539140c91fd8eb3b66ec41882dbb1f5d3a9fad106ff7e24ce90e2485e434f9" }, "downloads": -1, "filename": "py_rolldice-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7090cbee16ad1afcaa4104be642f13a3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9808, "upload_time": "2018-07-18T03:08:31", "url": "https://files.pythonhosted.org/packages/67/36/a21ff16757b690afd21c081a09d77e8f6e868ec3791f9000ccc71bdde385/py_rolldice-0.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e6bb5645bcba496755099a2f3c7793f6", "sha256": "aaab3705598263dda5f24535263090cdb5ddfee7a23233802386bacca0f48365" }, "downloads": -1, "filename": "py-rolldice-0.3.0.tar.gz", "has_sig": false, "md5_digest": "e6bb5645bcba496755099a2f3c7793f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9804, "upload_time": "2018-07-18T03:08:32", "url": "https://files.pythonhosted.org/packages/97/bb/743cffa9622e0c3805ea2308c5189e66a336e510e60f07dfd0b801acfc9a/py-rolldice-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "ec460dfd076ad985f3fd463911a1db1d", "sha256": "dbcd6ef6b9dfa0955714372c8a3cb2b2179d81a17107e3dc49d16a3c08418418" }, "downloads": -1, "filename": "py_rolldice-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "ec460dfd076ad985f3fd463911a1db1d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10087, "upload_time": "2018-07-18T03:30:32", "url": "https://files.pythonhosted.org/packages/a9/93/04f36ecbc34ee383cd4de1bfa15bb6fb4eeaaa35b2450d4d33151752715d/py_rolldice-0.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dd48b81619ac329f4e76c41e720112c2", "sha256": "eaf1600eb3e7e75432d775f4abe8c083a4f5cb4a21bea62a73c07d4968a1dd45" }, "downloads": -1, "filename": "py-rolldice-0.3.1.tar.gz", "has_sig": false, "md5_digest": "dd48b81619ac329f4e76c41e720112c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10113, "upload_time": "2018-07-18T03:30:34", "url": "https://files.pythonhosted.org/packages/ec/76/7d69b7ea6dd3d2ae6a9eaba5b4e66f9e63cc99757417c59fbdf644483b86/py-rolldice-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "f41fbc04d66d58f2f5bdb2e55b1bbd19", "sha256": "0dc237bec74690967f8d1c2cb6bed288ca9c042ccb426c790f7ca28ef3c79cc5" }, "downloads": -1, "filename": "py_rolldice-0.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "f41fbc04d66d58f2f5bdb2e55b1bbd19", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10073, "upload_time": "2018-07-18T17:03:41", "url": "https://files.pythonhosted.org/packages/86/03/1d77bd1b2aa2006fa88cd7ad9568f040dd9525375a558ab6e140f3df7773/py_rolldice-0.3.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "07f98ba7860579e3455ba9fdbc16bb87", "sha256": "6ad86d061bcbff34b13d1ae962abd114df9881763d81116ce0dd96dcb4435abf" }, "downloads": -1, "filename": "py-rolldice-0.3.2.tar.gz", "has_sig": false, "md5_digest": "07f98ba7860579e3455ba9fdbc16bb87", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10117, "upload_time": "2018-07-18T17:03:43", "url": "https://files.pythonhosted.org/packages/1d/45/c443a0f75b0b87f18e43347fa27ecd89e4681b4f20341da155f9d4a5795e/py-rolldice-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "594e5fa87a395b25c3f63117d1cdcfab", "sha256": "ef02e4ac4534ee5bc506842cec385dedeb8b05ea5f403d97c7e95424010da78e" }, "downloads": -1, "filename": "py_rolldice-0.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "594e5fa87a395b25c3f63117d1cdcfab", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10074, "upload_time": "2018-07-18T18:19:58", "url": "https://files.pythonhosted.org/packages/b9/13/a4028cb2c4068557c0ba73ae8d49c54e0eae62e44e10a19e52b58d16b684/py_rolldice-0.3.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9434be8ee8efc608faed873029cd5982", "sha256": "19701063dd53ac0307aece5ad7b5d8c097a6a4f103aed15d66aa5b8b30cf7c95" }, "downloads": -1, "filename": "py-rolldice-0.3.3.tar.gz", "has_sig": false, "md5_digest": "9434be8ee8efc608faed873029cd5982", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10116, "upload_time": "2018-07-18T18:19:58", "url": "https://files.pythonhosted.org/packages/fb/a0/94fdf905950e99e6ab3289cdcf1e88df3059963722f3c77043128b2a6dc4/py-rolldice-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "20d1ddc989222c598cbeb7b9488dc988", "sha256": "61c1689fd39919aa46349f74dda2ac19c6a89f4caa9d6545ac7857b50ecc032b" }, "downloads": -1, "filename": "py_rolldice-0.3.4-py3-none-any.whl", "has_sig": false, "md5_digest": "20d1ddc989222c598cbeb7b9488dc988", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10108, "upload_time": "2018-07-18T19:15:19", "url": "https://files.pythonhosted.org/packages/d7/98/4f63866416ba9f8b82d4e12a28b17bf1c2e2fa926f2ce4647c8293e5af68/py_rolldice-0.3.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e46e7b556f33e43d75f48358d649b2e1", "sha256": "171f6dc5c2864023137a5b42297769a6ee55fcb0eb4c38126137cb0b7deb1b97" }, "downloads": -1, "filename": "py-rolldice-0.3.4.tar.gz", "has_sig": false, "md5_digest": "e46e7b556f33e43d75f48358d649b2e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10151, "upload_time": "2018-07-18T19:15:20", "url": "https://files.pythonhosted.org/packages/51/ea/42b258ece0b1ab31a4010d8ebd9278083be09b3c54f5d021fd8866977bf6/py-rolldice-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "3475dbb2936623753467e7f43419e8f9", "sha256": "b4dd20204f1167d789e5d81834b128e575f3fbef2f8b51e0292eb7ec6ca3c776" }, "downloads": -1, "filename": "py_rolldice-0.3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "3475dbb2936623753467e7f43419e8f9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10042, "upload_time": "2018-07-18T19:19:01", "url": "https://files.pythonhosted.org/packages/8c/67/5017df426bc510e2c228c274faf81ac078549c73089bf23b8f6e4333005d/py_rolldice-0.3.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "faee9a321860cc8afcc649814f3e3c9f", "sha256": "a1de93aebae0e68fea94b81bf49f59c6982afe38039407020068e5ef817b6265" }, "downloads": -1, "filename": "py-rolldice-0.3.5.tar.gz", "has_sig": false, "md5_digest": "faee9a321860cc8afcc649814f3e3c9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10083, "upload_time": "2018-07-18T19:19:02", "url": "https://files.pythonhosted.org/packages/56/00/04f3d497d708afa72c4c378e2b9ceb2d9b0f00b045a2fb7dd8e86c791b68/py-rolldice-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "385340daa598974abaea8679fa2b04b2", "sha256": "da2d8772e6d6f34f4c7fc215858b26d8e2ce089c74760160957bbae542c13a77" }, "downloads": -1, "filename": "py_rolldice-0.3.6-py3-none-any.whl", "has_sig": false, "md5_digest": "385340daa598974abaea8679fa2b04b2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10082, "upload_time": "2018-07-18T22:51:46", "url": "https://files.pythonhosted.org/packages/1a/9a/5821c0204b0b4b9b25eb52e91cf1be6a9387f68f00136d39d6d5bcdea80c/py_rolldice-0.3.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "004059bc73b7256dc3db7fa8b8f5f2ca", "sha256": "4f80a178a90f3e3dd99a0f0a018aa4abc6c4397701ea355462482b4085d1171a" }, "downloads": -1, "filename": "py-rolldice-0.3.6.tar.gz", "has_sig": false, "md5_digest": "004059bc73b7256dc3db7fa8b8f5f2ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10133, "upload_time": "2018-07-18T22:51:47", "url": "https://files.pythonhosted.org/packages/bf/ae/7a9e290b10cb22e969259447b5b50ed51fb846a36fadbf96f412e7599f71/py-rolldice-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "1afe5b9889b04e0ad4f0ff58758a5e71", "sha256": "b245a9ae2ce157eaef6922b31affb1022f4be4b9d0c277a76a5f268762f17e5c" }, "downloads": -1, "filename": "py_rolldice-0.3.7-py3-none-any.whl", "has_sig": false, "md5_digest": "1afe5b9889b04e0ad4f0ff58758a5e71", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10602, "upload_time": "2018-07-20T00:49:32", "url": "https://files.pythonhosted.org/packages/d7/16/6f0d0545747adad08c5646a2d75c4bce0fc667685035de569eb542ed8b66/py_rolldice-0.3.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ed0613f5584fa4c079ceb1465adb1901", "sha256": "e31b757ed1247143331f705e4a61e9cc42728cf8f60582242301481cdd027820" }, "downloads": -1, "filename": "py-rolldice-0.3.7.tar.gz", "has_sig": false, "md5_digest": "ed0613f5584fa4c079ceb1465adb1901", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10709, "upload_time": "2018-07-20T00:49:33", "url": "https://files.pythonhosted.org/packages/a7/a6/efadc50e2825424b3bdbb4e56ab542d9d0bc3c3923c39f1f84046bb751e1/py-rolldice-0.3.7.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "f8e8017a99a9cb3fc8c57d01cedd4a16", "sha256": "7f74adb3861e34dbcd92fefb53ff5347aec2555261d444eeb6e7c52c0a62ff68" }, "downloads": -1, "filename": "py_rolldice-0.3.8-py3-none-any.whl", "has_sig": false, "md5_digest": "f8e8017a99a9cb3fc8c57d01cedd4a16", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10661, "upload_time": "2018-07-20T22:32:04", "url": "https://files.pythonhosted.org/packages/98/ac/49af955c20a1040ef575dbaff0aadd037de76a72be094a992763a0b2cbf5/py_rolldice-0.3.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8d534eb5f6b29a04fd5f58def1621458", "sha256": "de00a3274eea130e5f7e924804a5d24515e460b1dc870c864ea80de293584a1d" }, "downloads": -1, "filename": "py-rolldice-0.3.8.tar.gz", "has_sig": false, "md5_digest": "8d534eb5f6b29a04fd5f58def1621458", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10772, "upload_time": "2018-07-20T22:32:05", "url": "https://files.pythonhosted.org/packages/e1/01/5e40f372a981b81b84d1e8d9f633625cd73eb9f32a7f5004ae26a0786095/py-rolldice-0.3.8.tar.gz" } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "4f9d8f66c6d5c48c579fc8699ef8f225", "sha256": "4d336fde528ee1620b5b950ebc281058b6bbe4fc2d9f6267c020bafa5a788770" }, "downloads": -1, "filename": "py_rolldice-0.3.9-py3-none-any.whl", "has_sig": false, "md5_digest": "4f9d8f66c6d5c48c579fc8699ef8f225", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10775, "upload_time": "2018-07-24T21:28:14", "url": "https://files.pythonhosted.org/packages/0d/f9/4046e80861495173b0d9e6dfa73a77aac16a2b455c8ceb3662200a1d5fa6/py_rolldice-0.3.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5204df230e44d21c35d0ecbe2ed74dd2", "sha256": "dfa25917370d381882722ac1204deb15e243aaf5fd03a8593cb5c0bcca9f3d4a" }, "downloads": -1, "filename": "py-rolldice-0.3.9.tar.gz", "has_sig": false, "md5_digest": "5204df230e44d21c35d0ecbe2ed74dd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13399, "upload_time": "2018-07-24T21:28:16", "url": "https://files.pythonhosted.org/packages/21/50/c54a0aab1b663e2495f124e80567a357b2ec80dbac69dd4803b4cdd78ebe/py-rolldice-0.3.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4f9d8f66c6d5c48c579fc8699ef8f225", "sha256": "4d336fde528ee1620b5b950ebc281058b6bbe4fc2d9f6267c020bafa5a788770" }, "downloads": -1, "filename": "py_rolldice-0.3.9-py3-none-any.whl", "has_sig": false, "md5_digest": "4f9d8f66c6d5c48c579fc8699ef8f225", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10775, "upload_time": "2018-07-24T21:28:14", "url": "https://files.pythonhosted.org/packages/0d/f9/4046e80861495173b0d9e6dfa73a77aac16a2b455c8ceb3662200a1d5fa6/py_rolldice-0.3.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5204df230e44d21c35d0ecbe2ed74dd2", "sha256": "dfa25917370d381882722ac1204deb15e243aaf5fd03a8593cb5c0bcca9f3d4a" }, "downloads": -1, "filename": "py-rolldice-0.3.9.tar.gz", "has_sig": false, "md5_digest": "5204df230e44d21c35d0ecbe2ed74dd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13399, "upload_time": "2018-07-24T21:28:16", "url": "https://files.pythonhosted.org/packages/21/50/c54a0aab1b663e2495f124e80567a357b2ec80dbac69dd4803b4cdd78ebe/py-rolldice-0.3.9.tar.gz" } ] }