{ "info": { "author": "Robert Sharp", "author_email": "webmaster@sharpdesigndigital.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX :: Linux", "Programming Language :: C++", "Programming Language :: Cython", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "# Random Number Generator & Engine for Python3\n- Compiled Python3 API for the C++ Random Library.\n- Designed for python developers familiar with C++ random library.\n- Warning: RNG is not suitable for cryptography or secure hashing.\n\n\n### Quick Install `$ pip install RNG`\n\n\n### Installation may require the following:\n- Python 3.6 or later with dev tools (setuptools, pip, etc.)\n- Cython: Bridge from C/C++ to Python.\n- Modern C++17 Compiler and Standard Library.\n\n\n### Sister Projects:\n- Fortuna: Collection of tools to make custom random value generators. https://pypi.org/project/Fortuna/\n- Pyewacket: Drop-in replacement for the Python3 random module. https://pypi.org/project/Pyewacket/\n- MonkeyScope: Framework for testing non-deterministic generators. https://pypi.org/project/MonkeyScope/\n\n\n---\n\n## RNG Specifications\n\n#### Random Boolean\n- `RNG.bernoulli_variate(ratio_of_truth: float) -> bool`\n - Produces a Bernoulli distribution of boolean values.\n - @param ratio_of_truth :: the probability of True. Expected input range: `[0.0, 1.0]`, clamped.\n - @return :: True or False\n\n\n#### Random Integer\n- `RNG.uniform_int_variate(left_limit: int, right_limit: int) -> int`\n - Flat uniform distribution.\n - @param left_limit :: input A.\n - @param right_limit :: input B. \n - @return :: random integer in the inclusive range `[A, B]` or `[B, A]` if B < A\n- `RNG.binomial_variate(number_of_trials: int, probability: float) -> int`\n - Based on the idea of flipping a coin and counting how many heads come up after some number of flips.\n - @param number_of_trials :: how many times to flip a coin.\n - @param probability :: how likely heads will be flipped. 0.5 is a fair coin. 1.0 is a double headed coin.\n - @return :: count of how many heads came up.\n- `RNG.negative_binomial_variate(trial_successes: int, probability: float) -> int`\n - Based on the idea of flipping a coin as long as it takes to succeed.\n - @param trial_successes :: the required number of heads flipped to succeed.\n - @param probability :: how likely heads will be flipped. 0.50 is a fair coin.\n - @return :: the count of how many tails came up before the required number of heads.\n- `RNG.geometric_variate(probability: float) -> int`\n - Same as random_negative_binomial(1, probability). \n- `RNG.poisson_variate(mean: float) -> int`\n - @param mean :: sets the average output of the function.\n - @return :: random integer, poisson distribution centered on the mean.\n\n\n#### Random Floating Point\n- `RNG.generate_canonical() -> float`\n - Evenly distributes floats of maximum precision.\n - @return :: random float in range (0.0, 1.0)\n- `RNG.uniform_real_variate(left_limit: float, right_limit: float) -> float`\n - Flat uniform distribution of floats.\n - @return :: random Float between left_limit and right_limit.\n- `RNG.normal_variate(mean: float, std_dev: float) -> float`\n - @param mean :: sets the average output of the function.\n - @param std_dev :: standard deviation. Specifies spread of data from the mean.\n- `RNG.lognormal_variate(log_mean: float, log_deviation: float) -> float`\n - @param log_mean :: sets the log of the mean of the function.\n - @param log_deviation :: log of the standard deviation. Specifies spread of data from the mean.\n- `RNG.exponential_variate(lambda_rate: float) -> float`\n - Produces random non-negative floating-point values, distributed according to probability density function.\n - @param lambda_rate :: \u03bb constant rate of a random event per unit of time/distance.\n - @return :: The time/distance until the next random event. For example, this distribution describes the time between the clicks of a Geiger counter or the distance between point mutations in a DNA strand.\n- `RNG.gamma_variate(shape: float, scale: float) -> float`\n - Generalization of the exponential distribution.\n - Produces random positive floating-point values, distributed according to probability density function. \n - @param shape :: \u03b1 the number of independent exponentially distributed random variables.\n - @param scale :: \u03b2 the scale factor or the mean of each of the distributed random variables.\n - @return :: the sum of \u03b1 independent exponentially distributed random variables, each of which has a mean of \u03b2.\n- `RNG.weibull_variate(shape: float, scale: float) -> float`\n - Generalization of the exponential distribution.\n - Similar to the gamma distribution but uses a closed form distribution function.\n - Popular in reliability and survival analysis.\n- `RNG.extreme_value_variate(location: float, scale: float) -> float`\n - Based on Extreme Value Theory. \n - Used for statistical models of the magnitude of earthquakes and volcanoes.\n- `RNG.chi_squared_variate(degrees_of_freedom: float) -> float`\n - Used with the Chi Squared Test and Null Hypotheses to test if sample data fits an expected distribution.\n- `RNG.cauchy_variate(location: float, scale: float) -> float`\n - @param location :: It specifies the location of the peak. The default value is 0.0.\n - @param scale :: It represents the half-width at half-maximum. The default value is 1.0.\n - @return :: Continuous Distribution.\n- `RNG.fisher_f_variate(degrees_of_freedom_1: float, degrees_of_freedom_2: float) -> float`\n - F distributions often arise when comparing ratios of variances.\n- `RNG.student_t_variate(degrees_of_freedom: float) -> float`\n - T distribution. Same as a normal distribution except it uses the sample standard deviation rather than the population standard deviation.\n - As degrees_of_freedom goes to infinity it converges with the normal distribution.\n\n\n## Development Log\n##### RNG 1.6.6\n- Documentation Update\n\n##### RNG 1.6.5\n- Fixed Typos\n\n##### RNG 1.6.4\n- Installer update.\n\n##### RNG 1.6.3\n- More minor typos fixed.\n\n##### RNG 1.6.2\n- Minor typos fixed.\n\n##### RNG 1.6.1\n- Storm 3.2.2 Update.\n\n##### RNG 1.6.0\n- RNG is now compatible with python notebooks.\n\n##### RNG 1.5.5\n- Storm Update\n\n##### RNG 1.5.4\n- Storm 3.2 Update\n\n##### RNG 1.5.3\n- Fixed Typos\n\n##### RNG 1.5.2\n- Compiler Config Update\n\n##### RNG 1.5.1\n- A number of testing routines have been extracted into a new module: MonkeyScope.\n - distribution\n - timer\n - distribution_timer\n\n##### RNG 1.5.0, internal\n- Further API Refinements, new naming convention for variate generators: `_variate`\n\n##### RNG 1.4.2\n- Install script update\n- Test tweaks for noise reduction in timing tests.\n\n##### RNG 1.4.1\n- Test Patch for new API\n- Documentation Updates\n\n##### RNG 1.4.0\n- API Refactoring\n\n##### RNG 1.3.4\n- Storm Update 3.1.1\n\n##### RNG 1.3.3\n- Installer script update\n\n##### RNG 1.3.2\n- Minor Bug Fix\n\n##### RNG 1.3.1\n- Test Update\n\n##### RNG 1.3.1\n- Fixed Typos\n\n##### RNG 1.3.0\n- Storm Update\n\n##### RNG 1.2.5\n- Low level clean up\n\n##### RNG 1.2.4\n- Minor Typos Fixed\n\n##### RNG 1.2.3\n- Documentation Update\n- Test Update\n- Bug Fixes\n\n##### RNG 1.0.0 - 1.2.2, internal\n- API Changes:\n - randint changed to random_int\n - randbelow changed to random_below\n - random changed to generate_canonical\n - uniform changed to random_float\n\n##### RNG 0.2.3\n- Bug Fixes\n\n##### RNG 0.2.2\n- discrete() removed.\n\n##### RNG 0.2.1\n- minor typos\n- discrete() depreciated.\n\n##### RNG 0.2.0\n- Major Rebuild.\n\n##### RNG 0.1.22\n- The RNG Storm Engine is now the default standard.\n- Experimental Vortex Engine added for testing.\n\n##### RNG 0.1.21 beta\n- Small update to the testing suite.\n\n##### RNG 0.1.20 beta\n- Changed default inputs for random_int and random_below to sane values.\n - random_int(left_limit=1, right_limit=20) down from `-2**63, 2**63 - 1`\n - random_below(upper_bound=10) down from `2**63 - 1`\n\n##### RNG 0.1.19 beta\n- Broke some fixed typos, for a change of pace.\n\n##### RNG 0.1.18 beta\n- Fixed some typos.\n\n##### RNG 0.1.17 beta\n- Major Refactoring.\n- New primary engine: Hurricane.\n- Experimental engine Typhoon added: random_below() only.\n\n##### RNG 0.1.16 beta\n- Internal Engine Performance Tuning. \n\n##### RNG 0.1.15 beta\n- Engine Testing.\n\n##### RNG 0.1.14 beta\n- Fixed a few typos.\n\n##### RNG 0.1.13 beta\n- Fixed a few typos.\n\n##### RNG 0.1.12 beta\n- Major Test Suite Upgrade.\n- Major Bug Fixes.\n - Removed several 'foot-guns' in prep for fuzz testing in future releases.\n\n##### RNG 0.1.11 beta\n- Fixed small bug in the install script.\n\n##### RNG 0.1.10 beta\n- Fixed some typos.\n\n##### RNG 0.1.9 beta\n- Fixed some typos.\n\n##### RNG 0.1.8 beta\n- Fixed some typos.\n- More documentation added.\n\n##### RNG 0.1.7 beta\n- The `random_floating_point` function renamed to `random_float`.\n- The function `c_rand()` has been removed as well as all the cruft it required.\n- Major Documentation Upgrade.\n- Fixed an issue where keyword arguments would fail to propagate. Both, positional args and kwargs now work as intended.\n- Added this Dev Log.\n\n##### RNG 0.0.6 alpha\n- Minor ABI changes.\n\n##### RNG 0.0.5 alpha\n- Tests redesigned slightly for Float functions.\n\n##### RNG 0.0.4 alpha\n- Random Float Functions Implemented.\n\n##### RNG 0.0.3 alpha\n- Random Integer Functions Implemented.\n\n##### RNG 0.0.2 alpha\n- Random Bool Function Implemented.\n\n##### RNG 0.0.1 pre-alpha\n- Planning & Design.\n\n\n## MonkeyScope: Distribution and Performance Test Suite\n```\nMonkeyScope: RNG Tests\n=========================================================================\n\nBoolean Variate Distributions\n\nOutput Analysis: bernoulli_variate(0.0)\nTypical Timing: 36 \u00b1 5 ns\nStatistics of 1000 samples:\n Minimum: False\n Median: False\n Maximum: False\n Mean: 0.0\n Std Deviation: 0.0\nDistribution of 10000 samples:\n False: 100.0%\n\nOutput Analysis: bernoulli_variate(0.3333333333333333)\nTypical Timing: 41 \u00b1 7 ns\nStatistics of 1000 samples:\n Minimum: False\n Median: False\n Maximum: True\n Mean: 0.314\n Std Deviation: 0.46411636471902173\nDistribution of 10000 samples:\n False: 66.93%\n True: 33.07%\n\nOutput Analysis: bernoulli_variate(0.5)\nTypical Timing: 40 \u00b1 5 ns\nStatistics of 1000 samples:\n Minimum: False\n Median: False\n Maximum: True\n Mean: 0.494\n Std Deviation: 0.4999639987039066\nDistribution of 10000 samples:\n False: 50.59%\n True: 49.41%\n\nOutput Analysis: bernoulli_variate(0.6666666666666666)\nTypical Timing: 40 \u00b1 5 ns\nStatistics of 1000 samples:\n Minimum: False\n Median: True\n Maximum: True\n Mean: 0.684\n Std Deviation: 0.46491289506745237\nDistribution of 10000 samples:\n False: 33.22%\n True: 66.78%\n\nOutput Analysis: bernoulli_variate(1.0)\nTypical Timing: 32 \u00b1 1 ns\nStatistics of 1000 samples:\n Minimum: True\n Median: True\n Maximum: True\n Mean: 1.0\n Std Deviation: 0.0\nDistribution of 10000 samples:\n True: 100.0%\n\n\nInteger Variate Distributions\n\nBase Case\nOutput Analysis: Random.randint(1, 6)\nTypical Timing: 1088 \u00b1 61 ns\nStatistics of 1000 samples:\n Minimum: 1\n Median: 4\n Maximum: 6\n Mean: 3.532\n Std Deviation: 1.6914419883637746\nDistribution of 10000 samples:\n 1: 16.79%\n 2: 16.93%\n 3: 16.16%\n 4: 16.82%\n 5: 16.18%\n 6: 17.12%\n\nOutput Analysis: uniform_int_variate(1, 6)\nTypical Timing: 59 \u00b1 8 ns\nStatistics of 1000 samples:\n Minimum: 1\n Median: 3\n Maximum: 6\n Mean: 3.426\n Std Deviation: 1.7408400271133475\nDistribution of 10000 samples:\n 1: 17.01%\n 2: 16.39%\n 3: 16.66%\n 4: 16.5%\n 5: 16.71%\n 6: 16.73%\n\nOutput Analysis: binomial_variate(4, 0.5)\nTypical Timing: 140 \u00b1 13 ns\nStatistics of 1000 samples:\n Minimum: 0\n Median: 2\n Maximum: 4\n Mean: 2.038\n Std Deviation: 0.984152427218467\nDistribution of 10000 samples:\n 0: 6.12%\n 1: 25.1%\n 2: 37.29%\n 3: 25.0%\n 4: 6.49%\n\nOutput Analysis: negative_binomial_variate(5, 0.75)\nTypical Timing: 118 \u00b1 6 ns\nStatistics of 1000 samples:\n Minimum: 0\n Median: 1\n Maximum: 8\n Mean: 1.685\n Std Deviation: 1.4885479501850116\nDistribution of 10000 samples:\n 0: 23.35%\n 1: 29.92%\n 2: 22.14%\n 3: 12.89%\n 4: 6.53%\n 5: 2.98%\n 6: 1.4%\n 7: 0.49%\n 8: 0.17%\n 9: 0.06%\n 10: 0.02%\n 11: 0.04%\n 13: 0.01%\n\nOutput Analysis: geometric_variate(0.75)\nTypical Timing: 47 \u00b1 4 ns\nStatistics of 1000 samples:\n Minimum: 0\n Median: 0\n Maximum: 5\n Mean: 0.316\n Std Deviation: 0.6404248589803491\nDistribution of 10000 samples:\n 0: 75.33%\n 1: 18.4%\n 2: 4.72%\n 3: 1.12%\n 4: 0.34%\n 5: 0.07%\n 6: 0.01%\n 7: 0.01%\n\nOutput Analysis: poisson_variate(4.5)\nTypical Timing: 110 \u00b1 6 ns\nStatistics of 1000 samples:\n Minimum: 0\n Median: 4\n Maximum: 12\n Mean: 4.454\n Std Deviation: 2.1042537869753257\nDistribution of 10000 samples:\n 0: 1.16%\n 1: 5.0%\n 2: 11.72%\n 3: 16.76%\n 4: 18.74%\n 5: 17.24%\n 6: 12.49%\n 7: 8.34%\n 8: 4.72%\n 9: 2.38%\n 10: 0.83%\n 11: 0.41%\n 12: 0.14%\n 13: 0.05%\n 14: 0.02%\n\n\nFloating Point Variate Distributions\n\nBase Case\nOutput Analysis: Random.random()\nTypical Timing: 32 \u00b1 1 ns\nStatistics of 1000 samples:\n Minimum: 0.00020470717953002815\n Median: (0.4902766190643588, 0.49287975190577293)\n Maximum: 0.9998379746872317\n Mean: 0.4932275568514134\n Std Deviation: 0.2943772077006881\nPost-processor distribution of 10000 samples using round method:\n 0: 50.0%\n 1: 50.0%\n\nOutput Analysis: generate_canonical()\nTypical Timing: 38 \u00b1 4 ns\nStatistics of 1000 samples:\n Minimum: 0.0018313969488656262\n Median: (0.4999019745098515, 0.5000103956471701)\n Maximum: 0.9979157465022215\n Mean: 0.4983743559000373\n Std Deviation: 0.2857287394134513\nPost-processor distribution of 10000 samples using round method:\n 0: 50.0%\n 1: 50.0%\n\nBase Case\nOutput Analysis: Random.uniform(0.0, 10.0)\nTypical Timing: 229 \u00b1 16 ns\nStatistics of 1000 samples:\n Minimum: 0.0011475989233244999\n Median: (4.686759881204559, 4.698175014514612)\n Maximum: 9.994578954522886\n Mean: 4.90558557056895\n Std Deviation: 2.8901372998841577\nPost-processor distribution of 10000 samples using floor method:\n 0: 9.58%\n 1: 10.5%\n 2: 10.06%\n 3: 10.09%\n 4: 10.19%\n 5: 9.98%\n 6: 10.21%\n 7: 9.76%\n 8: 10.05%\n 9: 9.58%\n\nOutput Analysis: uniform_real_variate(0.0, 10.0)\nTypical Timing: 41 \u00b1 7 ns\nStatistics of 1000 samples:\n Minimum: 0.003871772166954936\n Median: (4.975709613518741, 4.99955707001919)\n Maximum: 9.99847163973721\n Mean: 5.041222981691081\n Std Deviation: 2.8720806186652457\nPost-processor distribution of 10000 samples using floor method:\n 0: 10.33%\n 1: 9.62%\n 2: 10.08%\n 3: 10.11%\n 4: 9.57%\n 5: 10.12%\n 6: 9.88%\n 7: 9.97%\n 8: 10.53%\n 9: 9.79%\n\nBase Case\nOutput Analysis: Random.expovariate(1.0)\nTypical Timing: 336 \u00b1 21 ns\nStatistics of 1000 samples:\n Minimum: 0.0008104371505790905\n Median: (0.6999357838616548, 0.7018251058756864)\n Maximum: 7.266089757629259\n Mean: 1.0321635246736387\n Std Deviation: 1.084028320793121\nPost-processor distribution of 10000 samples using floor method:\n 0: 63.7%\n 1: 22.72%\n 2: 8.33%\n 3: 3.3%\n 4: 1.26%\n 5: 0.4%\n 6: 0.22%\n 7: 0.04%\n 8: 0.01%\n 9: 0.01%\n 11: 0.01%\n\nOutput Analysis: exponential_variate(1.0)\nTypical Timing: 58 \u00b1 8 ns\nStatistics of 1000 samples:\n Minimum: 0.00018170037869458518\n Median: (0.7377113850720796, 0.7382275278647656)\n Maximum: 7.084870250885541\n Mean: 1.0149957923408772\n Std Deviation: 0.9661594059665878\nPost-processor distribution of 10000 samples using floor method:\n 0: 63.61%\n 1: 23.32%\n 2: 8.32%\n 3: 3.09%\n 4: 1.22%\n 5: 0.26%\n 6: 0.07%\n 7: 0.09%\n 8: 0.01%\n 10: 0.01%\n\nBase Case\nOutput Analysis: Random.gammavariate(1.0, 1.0)\nTypical Timing: 487 \u00b1 38 ns\nStatistics of 1000 samples:\n Minimum: 0.0010269090045949092\n Median: (0.6758922146292059, 0.6764364701429871)\n Maximum: 6.62473131254665\n Mean: 0.9526441065384418\n Std Deviation: 0.9235697791084873\nPost-processor distribution of 10000 samples using floor method:\n 0: 62.38%\n 1: 23.78%\n 2: 8.78%\n 3: 3.13%\n 4: 1.15%\n 5: 0.51%\n 6: 0.15%\n 7: 0.08%\n 8: 0.03%\n 9: 0.01%\n\nOutput Analysis: gamma_variate(1.0, 1.0)\nTypical Timing: 59 \u00b1 6 ns\nStatistics of 1000 samples:\n Minimum: 7.943300227810338e-05\n Median: (0.7410362381108585, 0.7486551841969276)\n Maximum: 9.45441577468242\n Mean: 1.0319939318688074\n Std Deviation: 1.0133677265428946\nPost-processor distribution of 10000 samples using floor method:\n 0: 63.46%\n 1: 23.11%\n 2: 8.67%\n 3: 3.01%\n 4: 1.18%\n 5: 0.37%\n 6: 0.08%\n 7: 0.07%\n 8: 0.03%\n 9: 0.02%\n\nBase Case\nOutput Analysis: Random.weibullvariate(1.0, 1.0)\nTypical Timing: 429 \u00b1 28 ns\nStatistics of 1000 samples:\n Minimum: 0.00014457030695612128\n Median: (0.6976139576861516, 0.6988385606862981)\n Maximum: 7.441929633011179\n Mean: 1.0360647371223919\n Std Deviation: 1.0423724124307105\nPost-processor distribution of 10000 samples using floor method:\n 0: 62.26%\n 1: 23.95%\n 2: 8.67%\n 3: 3.29%\n 4: 1.1%\n 5: 0.43%\n 6: 0.17%\n 7: 0.08%\n 8: 0.03%\n 9: 0.02%\n\nOutput Analysis: weibull_variate(1.0, 1.0)\nTypical Timing: 97 \u00b1 11 ns\nStatistics of 1000 samples:\n Minimum: 0.0001784696086844487\n Median: (0.6941698928066924, 0.6948215528368951)\n Maximum: 8.369567364716502\n Mean: 0.9966718438000562\n Std Deviation: 0.9674836941611771\nPost-processor distribution of 10000 samples using floor method:\n 0: 63.68%\n 1: 23.0%\n 2: 8.41%\n 3: 3.08%\n 4: 1.33%\n 5: 0.28%\n 6: 0.16%\n 7: 0.03%\n 8: 0.03%\n\nOutput Analysis: extreme_value_variate(0.0, 1.0)\nTypical Timing: 79 \u00b1 9 ns\nStatistics of 1000 samples:\n Minimum: -2.0871331458605598\n Median: (0.3869710970824426, 0.3904990435365016)\n Maximum: 6.870642194863319\n Mean: 0.5738754165001632\n Std Deviation: 1.2729399422463183\nPost-processor distribution of 10000 samples using round method:\n -2: 1.2%\n -1: 18.28%\n 0: 35.12%\n 1: 26.2%\n 2: 11.5%\n 3: 4.59%\n 4: 2.04%\n 5: 0.62%\n 6: 0.24%\n 7: 0.11%\n 8: 0.07%\n 9: 0.03%\n\nBase Case\nOutput Analysis: Random.gauss(5.0, 2.0)\nTypical Timing: 579 \u00b1 4 ns\nStatistics of 1000 samples:\n Minimum: -1.0864435352344746\n Median: (4.896021009703201, 4.8960635966136605)\n Maximum: 11.016252215240552\n Mean: 4.965365989325721\n Std Deviation: 1.9758300884950102\nPost-processor distribution of 10000 samples using round method:\n -2: 0.04%\n -1: 0.21%\n 0: 0.82%\n 1: 2.82%\n 2: 6.33%\n 3: 11.97%\n 4: 17.45%\n 5: 19.95%\n 6: 17.63%\n 7: 12.03%\n 8: 6.67%\n 9: 2.89%\n 10: 0.96%\n 11: 0.21%\n 12: 0.02%\n\nOutput Analysis: normal_variate(5.0, 2.0)\nTypical Timing: 87 \u00b1 2 ns\nStatistics of 1000 samples:\n Minimum: -2.405912295794069\n Median: (5.0738045445174995, 5.082279716366891)\n Maximum: 12.381509481018478\n Mean: 5.092836336120188\n Std Deviation: 2.014023813195181\nPost-processor distribution of 10000 samples using round method:\n -2: 0.06%\n -1: 0.28%\n 0: 0.79%\n 1: 2.77%\n 2: 6.21%\n 3: 12.0%\n 4: 17.38%\n 5: 19.86%\n 6: 17.04%\n 7: 13.02%\n 8: 6.47%\n 9: 3.01%\n 10: 0.83%\n 11: 0.22%\n 12: 0.05%\n 13: 0.01%\n\nBase Case\nOutput Analysis: Random.lognormvariate(1.6, 0.25)\nTypical Timing: 871 \u00b1 28 ns\nStatistics of 1000 samples:\n Minimum: 2.1400232821020095\n Median: (4.970649274737473, 4.972897691731108)\n Maximum: 11.584234487161941\n Mean: 5.099080347282304\n Std Deviation: 1.2828682146566066\nPost-processor distribution of 10000 samples using round method:\n 2: 0.35%\n 3: 7.51%\n 4: 27.79%\n 5: 30.41%\n 6: 19.95%\n 7: 9.09%\n 8: 3.4%\n 9: 0.96%\n 10: 0.43%\n 11: 0.07%\n 12: 0.03%\n 14: 0.01%\n\nOutput Analysis: lognormal_variate(1.6, 0.25)\nTypical Timing: 111 \u00b1 10 ns\nStatistics of 1000 samples:\n Minimum: 2.0565509130084196\n Median: (4.951319938162054, 4.956358747365627)\n Maximum: 10.705411301927128\n Mean: 5.084514398741803\n Std Deviation: 1.2702879123571864\nPost-processor distribution of 10000 samples using round method:\n 2: 0.23%\n 3: 7.93%\n 4: 26.34%\n 5: 31.23%\n 6: 20.45%\n 7: 9.02%\n 8: 3.25%\n 9: 1.12%\n 10: 0.33%\n 11: 0.08%\n 12: 0.02%\n\nOutput Analysis: chi_squared_variate(1.0)\nTypical Timing: 123 \u00b1 14 ns\nStatistics of 1000 samples:\n Minimum: 4.560050044340425e-07\n Median: (0.43843953531720004, 0.44248536881992023)\n Maximum: 12.827094790848676\n Mean: 1.0076909905738598\n Std Deviation: 1.4661644618564504\nPost-processor distribution of 10000 samples using floor method:\n 0: 68.66%\n 1: 15.68%\n 2: 7.28%\n 3: 3.75%\n 4: 2.04%\n 5: 1.08%\n 6: 0.69%\n 7: 0.35%\n 8: 0.2%\n 9: 0.09%\n 10: 0.1%\n 11: 0.02%\n 12: 0.03%\n 13: 0.01%\n 15: 0.02%\n\nOutput Analysis: cauchy_variate(0.0, 1.0)\nTypical Timing: 81 \u00b1 7 ns\nStatistics of 1000 samples:\n Minimum: -80.60257833512122\n Median: (-0.07136445696912773, -0.06912576811779096)\n Maximum: 302.9285259983777\n Mean: 0.048158350818380484\n Std Deviation: 14.33030682036316\nPost-processor distribution of 10000 samples using floor_mod_10 method:\n 0: 25.9%\n 1: 11.52%\n 2: 5.6%\n 3: 3.76%\n 4: 3.18%\n 5: 3.41%\n 6: 3.9%\n 7: 5.8%\n 8: 10.97%\n 9: 25.96%\n\nOutput Analysis: fisher_f_variate(8.0, 8.0)\nTypical Timing: 201 \u00b1 18 ns\nStatistics of 1000 samples:\n Minimum: 0.06789103397534023\n Median: (0.9903987592191404, 0.990587816520427)\n Maximum: 11.194291185158521\n Mean: 1.2913804655586418\n Std Deviation: 1.0772469766917976\nPost-processor distribution of 10000 samples using floor method:\n 0: 50.15%\n 1: 32.35%\n 2: 10.29%\n 3: 3.99%\n 4: 1.61%\n 5: 0.67%\n 6: 0.31%\n 7: 0.19%\n 8: 0.1%\n 9: 0.14%\n 10: 0.05%\n 11: 0.05%\n 12: 0.02%\n 13: 0.03%\n 14: 0.01%\n 15: 0.01%\n 16: 0.01%\n 18: 0.01%\n 106: 0.01%\n\nOutput Analysis: student_t_variate(8.0)\nTypical Timing: 164 \u00b1 12 ns\nStatistics of 1000 samples:\n Minimum: -5.182813039237713\n Median: (-0.040463896877030454, -0.03931607130970538)\n Maximum: 5.338481501612407\n Mean: 0.005453093050598653\n Std Deviation: 1.1905125047921103\nPost-processor distribution of 10000 samples using round method:\n -7: 0.01%\n -6: 0.03%\n -5: 0.05%\n -4: 0.36%\n -3: 1.4%\n -2: 6.6%\n -1: 23.55%\n 0: 36.53%\n 1: 23.14%\n 2: 6.39%\n 3: 1.42%\n 4: 0.34%\n 5: 0.14%\n 6: 0.02%\n 7: 0.02%\n\n\n=========================================================================\nTotal Test Time: 0.5327 seconds\n\n```\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": "", "keywords": "rng,Mersenne Twister,random number generator,cpp random library,random integer,Bernoulli,binomial,negative binomial,geometric,poisson,discrete,normal,distribution,log normal,gamma,exponential,weibull,extreme value,chi squared,cauchy,fisher f,student t", "license": "Free for non-commercial use", "maintainer": "", "maintainer_email": "", "name": "RNG", "package_url": "https://pypi.org/project/RNG/", "platform": "Darwin", "project_url": "https://pypi.org/project/RNG/", "project_urls": null, "release_url": "https://pypi.org/project/RNG/1.6.6/", "requires_dist": null, "requires_python": ">=3.6", "summary": "Python3 API for the C++ Random Library", "version": "1.6.6" }, "last_serial": 5978832, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "598ff032a1903e53c8b0adb02fd04e5a", "sha256": "4b82e3319cb7fb32faa3a406925b2dc86b9d44032d2d8f696772e1917c268c5e" }, "downloads": -1, "filename": "RNG-0.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "598ff032a1903e53c8b0adb02fd04e5a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 38920, "upload_time": "2019-03-15T08:59:21", "url": "https://files.pythonhosted.org/packages/cf/68/f22991329907ff5070ecb5f2e8048311197fda5fccd596928d6d7cd9cf7b/RNG-0.0.1-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "93909c8e1059624570881070dd617f76", "sha256": "a26e36f3c1f63e0feb0270b062a1a3fccf3fd7aa782d359e6c82781cdf2864c2" }, "downloads": -1, "filename": "RNG-0.0.1.tar.gz", "has_sig": false, "md5_digest": "93909c8e1059624570881070dd617f76", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 46687, "upload_time": "2019-03-15T08:59:23", "url": "https://files.pythonhosted.org/packages/d1/92/4e0c07eedb0ddbe8149b597bc5849504eef1a4d59f6b6fc48ac7d6177f04/RNG-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "57643539c7b9d09ca44bacfbe11cd051", "sha256": "33d6a252b694f7ccef2622fb6082760c3bddeb4ad4dd0fcaf32ff955ee28158e" }, "downloads": -1, "filename": "RNG-0.0.2-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "57643539c7b9d09ca44bacfbe11cd051", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 47299, "upload_time": "2019-03-16T11:41:20", "url": "https://files.pythonhosted.org/packages/6d/54/b0fa8c84096a34701daedddf3b8d28c8657c358e4661762f29cc73f72427/RNG-0.0.2-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2fdafb988a4626af733384f3309fa443", "sha256": "61e5acdb8821a032e266f7478a5f09b9a4c45da734262aba1851e3b4d478361b" }, "downloads": -1, "filename": "RNG-0.0.2.tar.gz", "has_sig": false, "md5_digest": "2fdafb988a4626af733384f3309fa443", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 47205, "upload_time": "2019-03-16T11:41:22", "url": "https://files.pythonhosted.org/packages/e4/b5/9d2eb18e33700e49ce3eb26daafc296c8986e75f78f5d12df2ac39c57df3/RNG-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "18c55ddf8cf1778f5d063ccbeffef0d9", "sha256": "4511ddc3258e6d593d6cfdad9da0c3ed13a068345f81a2c1d158be04fd1980ba" }, "downloads": -1, "filename": "RNG-0.0.3-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "18c55ddf8cf1778f5d063ccbeffef0d9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 59927, "upload_time": "2019-03-16T13:32:17", "url": "https://files.pythonhosted.org/packages/42/2b/15cffc1292ccf1c1c1f015bf93eae0201f3ced8bf29e0ff6149eab506c85/RNG-0.0.3-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "041d9d6e6cbb8586ef99d54ec84a4a74", "sha256": "66b4f29a4076f0e7b063fc181010132c9bde6bd255d4597c975e0d3233901000" }, "downloads": -1, "filename": "RNG-0.0.3.tar.gz", "has_sig": false, "md5_digest": "041d9d6e6cbb8586ef99d54ec84a4a74", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 57217, "upload_time": "2019-03-16T13:32:18", "url": "https://files.pythonhosted.org/packages/f0/a0/ea8143bb2230fe766cad5694efd6649220ae09b109e4ffaf5bdb5c029a67/RNG-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "bbb5ae0d239384ce6ac6cc7c88868dc1", "sha256": "50415152cd5e3062e7c9fd5751881a35c80f008128030a36b877ef08bf5a7294" }, "downloads": -1, "filename": "RNG-0.0.4-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bbb5ae0d239384ce6ac6cc7c88868dc1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 64251, "upload_time": "2019-03-16T14:08:27", "url": "https://files.pythonhosted.org/packages/44/97/10176aa376e2e50ac54dced53b8aff95d605d94e86bc0ce020f72f34c3af/RNG-0.0.4-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6a22a0379f1d8a992723440fd1a6bc1f", "sha256": "aa915394ead6b136e6d64f714090b2a3adf4125d5f88af94c218c99e6c02990e" }, "downloads": -1, "filename": "RNG-0.0.4.tar.gz", "has_sig": false, "md5_digest": "6a22a0379f1d8a992723440fd1a6bc1f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 64129, "upload_time": "2019-03-16T14:08:29", "url": "https://files.pythonhosted.org/packages/81/92/2d2541cca8b582556c59ec7ab924cc169bf0e5eb34bc8ec7e9fa1b877b9a/RNG-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "ded5dab2786b24050e0879a774195709", "sha256": "7ef1215b5a83ed621df4fe30a1b766101ee076ac622549cf3950d2407a6b4a7e" }, "downloads": -1, "filename": "RNG-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ded5dab2786b24050e0879a774195709", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 64253, "upload_time": "2019-03-16T14:30:06", "url": "https://files.pythonhosted.org/packages/ea/04/932a16b158002081e729d2c84e01488cd542447bec4c536ef79532d2d297/RNG-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ed1aafa8e0252d35a715da98d5b9c1e1", "sha256": "2fac611c11c1cbf3cc6aa3cd3ad1b6d59ee39c95642932528b352aea240923fa" }, "downloads": -1, "filename": "RNG-0.0.5.tar.gz", "has_sig": false, "md5_digest": "ed1aafa8e0252d35a715da98d5b9c1e1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 64135, "upload_time": "2019-03-16T14:30:08", "url": "https://files.pythonhosted.org/packages/2a/5c/6d05510f71f689c2a7a8105475b35210ea1ae50c2d785fe6d628ce20be5b/RNG-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "992c42b7eaef5c5fd3ab6de7c28e997c", "sha256": "86e9d7711c5a38a75a45ccafbfda6843caf005aeb78e2a89b030715566abbc37" }, "downloads": -1, "filename": "RNG-0.0.6-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "992c42b7eaef5c5fd3ab6de7c28e997c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 64435, "upload_time": "2019-03-16T15:18:21", "url": "https://files.pythonhosted.org/packages/76/a6/295881fc8391087c432c04afd1d7865f31e2863dda0143e23bc6efd35418/RNG-0.0.6-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3e272d37335dd49955d5744ae43f7ec1", "sha256": "bc0e5bbec001ac83a6d896be913650b571b313af3ebe393cd8196116ace72538" }, "downloads": -1, "filename": "RNG-0.0.6.tar.gz", "has_sig": false, "md5_digest": "3e272d37335dd49955d5744ae43f7ec1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 64987, "upload_time": "2019-03-16T15:18:23", "url": "https://files.pythonhosted.org/packages/f0/ea/21a815fbb6fab669d03ce564aa622942a7641baf650531560862b61f97bb/RNG-0.0.6.tar.gz" } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "046f3907f79910c5b921e9f6fee52abb", "sha256": "5e3066b0f388a60374fb8a067e631ce556e0934cd7d2bdb251d3563155040536" }, "downloads": -1, "filename": "RNG-0.1.10-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "046f3907f79910c5b921e9f6fee52abb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 67299, "upload_time": "2019-03-18T05:11:56", "url": "https://files.pythonhosted.org/packages/29/0e/03e451263586766e387e59e731822e94a3094ae5b88e9be54d48f77ec63a/RNG-0.1.10-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3fca0dff6554b2e80cb3ed963d4096d1", "sha256": "f8be55fea41858cd8c461fc4341cd7acfb0d9c9bdb7664ae403442a56fe34a09" }, "downloads": -1, "filename": "RNG-0.1.10.tar.gz", "has_sig": false, "md5_digest": "3fca0dff6554b2e80cb3ed963d4096d1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 69299, "upload_time": "2019-03-18T05:11:59", "url": "https://files.pythonhosted.org/packages/fb/f8/2039653a5c73c4bebc1ccc185346cc0f1742d88b0f8c966327b3f667578b/RNG-0.1.10.tar.gz" } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "b51ae47af9315c92aeb3930e8fa7fcd9", "sha256": "7b50ed749e86d90f77a6fd66a92a600d31fcb9e2a5afcf8c250208ff2e26874d" }, "downloads": -1, "filename": "RNG-0.1.11-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b51ae47af9315c92aeb3930e8fa7fcd9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 67316, "upload_time": "2019-03-18T05:13:38", "url": "https://files.pythonhosted.org/packages/50/53/5ec97fe687c730c680a4cb0a4d95016cd7ef9ec7069b8ecb86e6b954cfa4/RNG-0.1.11-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ef03ef9d459c546566135e54ad1fb3af", "sha256": "cf4ab9500a346b865fa269af4e399dd5c243649e2aab82ab4b276ed0d03c0586" }, "downloads": -1, "filename": "RNG-0.1.11.tar.gz", "has_sig": false, "md5_digest": "ef03ef9d459c546566135e54ad1fb3af", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 69339, "upload_time": "2019-03-18T05:13:40", "url": "https://files.pythonhosted.org/packages/06/e9/822710c8d81e28022055cc83db80b67822171f4ca7cd4e8ccd8705f83578/RNG-0.1.11.tar.gz" } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "a8bc3358916bf388d7491a96fa041ad1", "sha256": "a366fbf7769589d2bdbf26f3da977ef5e53773faee95d5a9358f7b1962b5c068" }, "downloads": -1, "filename": "RNG-0.1.12-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a8bc3358916bf388d7491a96fa041ad1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 94849, "upload_time": "2019-03-19T10:57:44", "url": "https://files.pythonhosted.org/packages/fb/45/812c5f8f176184e4a022f1c3042e0cb4f7fe5972ffb7130c7fb23e1742db/RNG-0.1.12-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "73b7106183642d7f6e310142f164d7c7", "sha256": "3d72b15865736cfd15c919949ad8afae8d788a6e01038f85b289caf14bd5efaa" }, "downloads": -1, "filename": "RNG-0.1.12.tar.gz", "has_sig": false, "md5_digest": "73b7106183642d7f6e310142f164d7c7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 90994, "upload_time": "2019-03-19T10:57:45", "url": "https://files.pythonhosted.org/packages/37/88/dd4aef33dc9eb86268bd58063ed8d4108fcdb465953d8e4d15f65c0e42b4/RNG-0.1.12.tar.gz" } ], "0.1.13": [ { "comment_text": "", "digests": { "md5": "d3e521d4f15f037395709092dc159443", "sha256": "d064b1045b5f9484845c0b473883783704350b98c0e7d00ab04433aac66017ee" }, "downloads": -1, "filename": "RNG-0.1.13-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d3e521d4f15f037395709092dc159443", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 94742, "upload_time": "2019-03-19T11:38:24", "url": "https://files.pythonhosted.org/packages/24/7d/4c75d4eb4060da1a7c73efef301c022201cd12e952bef886dcb6ea78f229/RNG-0.1.13-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a894dbcd0f563db77a84a0d595642772", "sha256": "6d51a08481161294c2af6627deb49e32696440fd30746ea94b1a835cb59b6d6b" }, "downloads": -1, "filename": "RNG-0.1.13.tar.gz", "has_sig": false, "md5_digest": "a894dbcd0f563db77a84a0d595642772", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 91036, "upload_time": "2019-03-19T11:38:26", "url": "https://files.pythonhosted.org/packages/d2/c2/83dc59a480bb88b1795a738b768e3b7cca5f70cb00d1b0b9e6e52c78680c/RNG-0.1.13.tar.gz" } ], "0.1.14": [ { "comment_text": "", "digests": { "md5": "89b8fd0f5af3a4b521ea8a9dd6051a0e", "sha256": "b96a299a26fe02155d8bf85247cb3ad9acbfed62d070c9ade2e6f9edcb0d02fa" }, "downloads": -1, "filename": "RNG-0.1.14-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "89b8fd0f5af3a4b521ea8a9dd6051a0e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 94150, "upload_time": "2019-03-19T11:58:38", "url": "https://files.pythonhosted.org/packages/6d/13/f8501f95a77a426bab68164cb23b2ded2e5096984e6aae34a96f10106548/RNG-0.1.14-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1501ecea81a0d556b8587ded76d38331", "sha256": "2087ae73c26b5b8f26d81e0e54d15f426c57b2fb85a149897a2e8f35f877256b" }, "downloads": -1, "filename": "RNG-0.1.14.tar.gz", "has_sig": false, "md5_digest": "1501ecea81a0d556b8587ded76d38331", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 88425, "upload_time": "2019-03-19T11:58:40", "url": "https://files.pythonhosted.org/packages/d4/90/c0847901b9ef759d0a3d17dd55f773477abf0ea226f67df0cea77d0a458e/RNG-0.1.14.tar.gz" } ], "0.1.15": [ { "comment_text": "", "digests": { "md5": "04592a215d5f93d05d16e0498eba7947", "sha256": "a307c0ecffbdd67a658b114c1692de1b5b09693439cd6c519213dd3f60f80d62" }, "downloads": -1, "filename": "RNG-0.1.15-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "04592a215d5f93d05d16e0498eba7947", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 100438, "upload_time": "2019-03-20T05:38:32", "url": "https://files.pythonhosted.org/packages/72/93/898072df2ec88221045d0bdabf164bef020fab00343585bb88e48f4c7373/RNG-0.1.15-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "75c77fce17e8b2991241501bb48503c3", "sha256": "15077e476999f3616cc8b3b7eb4445d41f9a792ef53189b601f8883156330c1e" }, "downloads": -1, "filename": "RNG-0.1.15.tar.gz", "has_sig": false, "md5_digest": "75c77fce17e8b2991241501bb48503c3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 98598, "upload_time": "2019-03-20T05:38:34", "url": "https://files.pythonhosted.org/packages/b8/55/c444d368569b3c8c469638aed1165fafd85bad0c607d0d604090bca0d537/RNG-0.1.15.tar.gz" } ], "0.1.17": [ { "comment_text": "", "digests": { "md5": "f3c1d69ea7c580f92570ff6a4b49de11", "sha256": "aa378e2941a172e23ed16d4c9bb760545153cf0a5c62f02c9e170794d531034c" }, "downloads": -1, "filename": "RNG-0.1.17-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f3c1d69ea7c580f92570ff6a4b49de11", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 122648, "upload_time": "2019-03-21T09:41:08", "url": "https://files.pythonhosted.org/packages/3b/41/40e7c078e44ca0d7a11d8cf1dde6315c3fbc375697f8c7021bb3b5c3fe8a/RNG-0.1.17-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "80708e5fd74935c9d5f57e12f18ba0b4", "sha256": "714ff65319f9d397aebb43a535167b312dd88dd74130baab3af10368a0396a7d" }, "downloads": -1, "filename": "RNG-0.1.17.tar.gz", "has_sig": false, "md5_digest": "80708e5fd74935c9d5f57e12f18ba0b4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 109260, "upload_time": "2019-03-21T09:41:09", "url": "https://files.pythonhosted.org/packages/5e/94/39bdc65cf24e388a39351642f0c05ccc59bdd1f3355030cc4e13c70cca56/RNG-0.1.17.tar.gz" } ], "0.1.18": [ { "comment_text": "", "digests": { "md5": "2ab3aab0763833129e156f4fd5865d50", "sha256": "72d40da720aa1a63c81982379d90f9010a94cca3b2c96098236ff588a2217a14" }, "downloads": -1, "filename": "RNG-0.1.18-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2ab3aab0763833129e156f4fd5865d50", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 122495, "upload_time": "2019-03-21T09:59:36", "url": "https://files.pythonhosted.org/packages/4e/fb/6330f015ddbccf40207cf037184271db8040a491e1826b6c687d4628b125/RNG-0.1.18-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "dd492e6f26348be9aa25eda41720cbfc", "sha256": "4361963d2d9c16d64fff33a1ad7fb2a266b9ea10554bdeedcb92a6aba88ce759" }, "downloads": -1, "filename": "RNG-0.1.18.tar.gz", "has_sig": false, "md5_digest": "dd492e6f26348be9aa25eda41720cbfc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 107831, "upload_time": "2019-03-21T09:59:38", "url": "https://files.pythonhosted.org/packages/5e/d3/8fae437bebc5ea7ccc8bcec315b4700e43db608998997da58d42e9e8e4b2/RNG-0.1.18.tar.gz" } ], "0.1.19": [ { "comment_text": "", "digests": { "md5": "dca5b78ec7f0625de7255f7811808550", "sha256": "0712850a3b5dc42f2abae275ca32c74865fd31c1b0dc94504781455def6db515" }, "downloads": -1, "filename": "RNG-0.1.19-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "dca5b78ec7f0625de7255f7811808550", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 122504, "upload_time": "2019-03-21T10:05:43", "url": "https://files.pythonhosted.org/packages/39/e9/38f7d032205b783e4b0bdbd05f1ee9c43daa71b63584bdf1b9363ee71f4e/RNG-0.1.19-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "838117980d35e8fc7f740d2c49eadb78", "sha256": "341eef28cc7e8d402254e867cb9422b3c39180f69d81440fa7d4cd2eb1b7133a" }, "downloads": -1, "filename": "RNG-0.1.19.tar.gz", "has_sig": false, "md5_digest": "838117980d35e8fc7f740d2c49eadb78", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 108889, "upload_time": "2019-03-21T10:05:45", "url": "https://files.pythonhosted.org/packages/ff/9d/220bc338591b3fd6af2c050488efbb66ea536c1de775a6d231439916cddf/RNG-0.1.19.tar.gz" } ], "0.1.20": [ { "comment_text": "", "digests": { "md5": "64168b6c2dd5a28a41badf64af09f2bd", "sha256": "cdeae5287f903d257c843b4c79f98d06d5226e3d8299eddfe521b68496022e71" }, "downloads": -1, "filename": "RNG-0.1.20-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "64168b6c2dd5a28a41badf64af09f2bd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 122382, "upload_time": "2019-03-22T05:17:50", "url": "https://files.pythonhosted.org/packages/fb/93/c401d3998c96c518ed2db04aa0ebad9969f7f93e4478026b39daff4bdf42/RNG-0.1.20-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "581d977dad4760ca8ce55397f9c19b28", "sha256": "c24950d8ce06eefd432b8172f45d580a2a380eca9a7431e1cb034c3d0a22042e" }, "downloads": -1, "filename": "RNG-0.1.20.tar.gz", "has_sig": false, "md5_digest": "581d977dad4760ca8ce55397f9c19b28", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 108900, "upload_time": "2019-03-22T05:17:52", "url": "https://files.pythonhosted.org/packages/e0/0c/88eb03be261cabc57f50403317ee116f26758f3b05179213b3ecbf915a14/RNG-0.1.20.tar.gz" } ], "0.1.22": [ { "comment_text": "", "digests": { "md5": "048615ad67506c22c34f90e4df86816d", "sha256": "8b3abca0f4fa123e29b58bbde14eb812babd01dab5a1dfa4355f36e3426c071c" }, "downloads": -1, "filename": "RNG-0.1.22-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "048615ad67506c22c34f90e4df86816d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 128556, "upload_time": "2019-03-25T00:14:05", "url": "https://files.pythonhosted.org/packages/1a/ed/2ec62e8c3aec013a19835375d1aa23d66492f4c17966c58ff5760823c570/RNG-0.1.22-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "92bfd04cf82daff9d04678296e5320c1", "sha256": "85cccc0e9b49d979a7cb89211bce201bae0038bf86df6359c88691b44a8fa517" }, "downloads": -1, "filename": "RNG-0.1.22.tar.gz", "has_sig": false, "md5_digest": "92bfd04cf82daff9d04678296e5320c1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 114470, "upload_time": "2019-03-25T00:14:07", "url": "https://files.pythonhosted.org/packages/77/d5/99ae4c139cf7e2c4337e58f4d689426ced0bb897ec9f5c7e6f9e11117580/RNG-0.1.22.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "d1794376301d5a7f14b601a07bc6eba1", "sha256": "7b80f860f0ce336e869b4a6a1e55b9a9dcd006b87a6564c24342538b2db304da" }, "downloads": -1, "filename": "RNG-0.1.7-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d1794376301d5a7f14b601a07bc6eba1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 66824, "upload_time": "2019-03-17T11:21:03", "url": "https://files.pythonhosted.org/packages/2c/79/6818c6f23dd0f6df362064761461635485a698efa91573b6e7550f8afd10/RNG-0.1.7-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "588b4d5f89b1cb013ebfb0ebfddb33f8", "sha256": "b40a62552ebb48770d212d53ddbedeaf00b2e86c597a9fc761f603b4a11fef51" }, "downloads": -1, "filename": "RNG-0.1.7.tar.gz", "has_sig": false, "md5_digest": "588b4d5f89b1cb013ebfb0ebfddb33f8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 68365, "upload_time": "2019-03-17T11:21:04", "url": "https://files.pythonhosted.org/packages/44/67/dac53f1b06c53404ef730f3470b5d0ae3002a93f7112b5d17e015c227d5b/RNG-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "4e1f6b24646b819f0e5eca25fb2e2ace", "sha256": "a4100de529bee41f050aa888368aa67d30173e71b30eb2f16d64b1db8227acfa" }, "downloads": -1, "filename": "RNG-0.1.8-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4e1f6b24646b819f0e5eca25fb2e2ace", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 67516, "upload_time": "2019-03-18T05:07:06", "url": "https://files.pythonhosted.org/packages/5f/87/c76fe6b97fc094239266f3be30cc9b68ad134d23b0c0c2c36f5256a6c9db/RNG-0.1.8-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "84835489af9e3bdf473d9ec374870e09", "sha256": "5501bcba529566bfe8c5113c40d11c451febd9f5747899ac2978dd4ae7736115" }, "downloads": -1, "filename": "RNG-0.1.8.tar.gz", "has_sig": false, "md5_digest": "84835489af9e3bdf473d9ec374870e09", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 69910, "upload_time": "2019-03-18T05:07:08", "url": "https://files.pythonhosted.org/packages/bb/b1/1ebf104fc2c61c5105f0dc0b47686e722305a0e82c2b8488ec3ae28f369f/RNG-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "9cc330330e642d2bcb999a0fb943d2d9", "sha256": "38bda2540294b0ac08c0c83c47bbbe5fee989975f2620dad54b7b56b2518e7ef" }, "downloads": -1, "filename": "RNG-0.1.9-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9cc330330e642d2bcb999a0fb943d2d9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 67340, "upload_time": "2019-03-18T05:09:56", "url": "https://files.pythonhosted.org/packages/07/b3/60b3383cb2b760ea5010c56941486479067b9c9ff5551daefcd79a08e713/RNG-0.1.9-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "03fa096c3f7381ec6caa9a7868bf5f79", "sha256": "dba56fca5dee16e962365f3a4f2df9d95f4ab077e999afe44469ce6ded04206b" }, "downloads": -1, "filename": "RNG-0.1.9.tar.gz", "has_sig": false, "md5_digest": "03fa096c3f7381ec6caa9a7868bf5f79", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 69395, "upload_time": "2019-03-18T05:09:58", "url": "https://files.pythonhosted.org/packages/d3/43/ca6ab659defc1b27a0063ec9aa3ef40381c64ae8e6c57c61dfac064fa264/RNG-0.1.9.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "3fa72c6b306ebbb25d923d99a0cde2b6", "sha256": "08108b456abed80598dbde73c5f44f66a806e9f617aebece24875d8a4062f50e" }, "downloads": -1, "filename": "RNG-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3fa72c6b306ebbb25d923d99a0cde2b6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 107640, "upload_time": "2019-04-02T23:37:13", "url": "https://files.pythonhosted.org/packages/f6/16/0185b2dd17394ebb2caf769cf1a890b3171415092a3628e7b3187c970802/RNG-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fb872b74cbf4ca4c0f21a2e99002f236", "sha256": "7b286db9a81cf6171b593c65dab5415160e99ca1bd3dac2efe102fc219c576ed" }, "downloads": -1, "filename": "RNG-0.2.0.tar.gz", "has_sig": false, "md5_digest": "fb872b74cbf4ca4c0f21a2e99002f236", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 106359, "upload_time": "2019-04-02T23:37:15", "url": "https://files.pythonhosted.org/packages/5d/93/55a3fad56874b4423cad86a4da54da35aabad6c0971de1cc5cb58569988e/RNG-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "22c499c76030465f2de7933461dbb059", "sha256": "dcdfbcfdbbb7884c17d4517456c4f0901248785b82de250d8d8e41e232c2971f" }, "downloads": -1, "filename": "RNG-0.2.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "22c499c76030465f2de7933461dbb059", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 107639, "upload_time": "2019-04-02T23:50:04", "url": "https://files.pythonhosted.org/packages/46/4d/db26328d5705d0e0e4e7cc4577902663a5fb8f24f2456e661856a656c3ed/RNG-0.2.1-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "099b1605ea4ac4ca42ce77e13278fbc0", "sha256": "5c473e65a6efc443d3de3793ef4cdca51a17d0a6ee9a1f5c5cdd21554d5d44a8" }, "downloads": -1, "filename": "RNG-0.2.1.tar.gz", "has_sig": false, "md5_digest": "099b1605ea4ac4ca42ce77e13278fbc0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 106959, "upload_time": "2019-04-02T23:50:06", "url": "https://files.pythonhosted.org/packages/04/27/00af1c593f1e40f57985536d4f28b6c7311cc4106395d7078209c74c96c3/RNG-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "633438cf78c47982ff232c82e82b0547", "sha256": "d75c64eec3d76c24caa2cdc4ecdb5cca6e95124f2bf73dad88e1d39001f22406" }, "downloads": -1, "filename": "RNG-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "633438cf78c47982ff232c82e82b0547", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 103575, "upload_time": "2019-04-14T21:19:42", "url": "https://files.pythonhosted.org/packages/87/a5/af05fef355981e8b2a3f405800a99ef072b4c390778c1bf2a448722620bc/RNG-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0e97ee2e158844c593ecc4b97647d562", "sha256": "5389a072995b8d1fe5b8438a4830bbcb86cd867c556537cfde12849c24b67d80" }, "downloads": -1, "filename": "RNG-0.2.2.tar.gz", "has_sig": false, "md5_digest": "0e97ee2e158844c593ecc4b97647d562", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 105896, "upload_time": "2019-04-14T21:19:43", "url": "https://files.pythonhosted.org/packages/9b/2e/f8e9fe8816a141e314cb21979e9c12bbeb1c9c8dd997f8bc9c30cd72dcb4/RNG-0.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "632b52c903f97590950c6605c319bd84", "sha256": "d1331728bf2b65734257a354563ef47d7e3ed15cdd1dbd30ff9d8530844d8cea" }, "downloads": -1, "filename": "RNG-1.2.3-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "632b52c903f97590950c6605c319bd84", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 102420, "upload_time": "2019-04-28T21:09:39", "url": "https://files.pythonhosted.org/packages/b7/c2/4601b661117136e461c71a9023c3256783f70ee7f239280c017cbdc006ca/RNG-1.2.3-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7b7f0a897db9652961927ecb9c4700a8", "sha256": "140e4f603fedc3609e9d8e402936f5add24e51b596cccaca1fdd0c13b72154a6" }, "downloads": -1, "filename": "RNG-1.2.3.tar.gz", "has_sig": false, "md5_digest": "7b7f0a897db9652961927ecb9c4700a8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 107900, "upload_time": "2019-04-28T21:09:44", "url": "https://files.pythonhosted.org/packages/17/6c/e92720f85fe5542e3c1924a36df22a8ec5c0919e4341ca2a10984cb93d6f/RNG-1.2.3.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "e10a5ca6e6b9c21b5ed4d39399c73b99", "sha256": "64b72845e85156293cd0c22661551acf4dfea87fada6ccb0764f9d26fcf591d3" }, "downloads": -1, "filename": "RNG-1.2.4-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e10a5ca6e6b9c21b5ed4d39399c73b99", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 102433, "upload_time": "2019-04-28T21:17:12", "url": "https://files.pythonhosted.org/packages/55/25/2522da9a4fc1bbfa2e0beaa83780c350a0601ac6267339ec9ed07148e0da/RNG-1.2.4-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "80fed7e7d6298f8f9908e28710940b2f", "sha256": "072de607b0801e876282ad00c7d6e9cc3879cd58a4416b6ae3023ab9f65ecc35" }, "downloads": -1, "filename": "RNG-1.2.4.tar.gz", "has_sig": false, "md5_digest": "80fed7e7d6298f8f9908e28710940b2f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 107914, "upload_time": "2019-04-28T21:17:15", "url": "https://files.pythonhosted.org/packages/db/12/497a1d59ed14f97310c0fcaac6d855a895f86cb11a9e522f73724e55eec3/RNG-1.2.4.tar.gz" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "0e39f95770f39b63f29c890265b248de", "sha256": "c6776a495c4a497a45c79087afee46fd920a37fc8f1b9e7d7bf5cfe0932cc783" }, "downloads": -1, "filename": "RNG-1.2.5-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0e39f95770f39b63f29c890265b248de", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 97142, "upload_time": "2019-04-29T21:51:30", "url": "https://files.pythonhosted.org/packages/1c/46/be159331b9d55f88c8d8ce162bb9ba0c7ca8af2b1af08381ecd38696ad01/RNG-1.2.5-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4e92abec790e4a4bb39666aa20a056dc", "sha256": "48e26a0ccd273a8255239c5a910ba07350c40df54a89f252a137af6a5b2c163f" }, "downloads": -1, "filename": "RNG-1.2.5.tar.gz", "has_sig": false, "md5_digest": "4e92abec790e4a4bb39666aa20a056dc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 106468, "upload_time": "2019-04-29T21:51:35", "url": "https://files.pythonhosted.org/packages/54/f0/658b43341d660ffc6bd05f30571870151970e34ecaf2d057857fdd04019b/RNG-1.2.5.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "8ac61dcc71064653f04b146c3cbc9c6a", "sha256": "d880b99359a97b21c8962774e1b9f6c5253e015fcc1f642ae24d5eb08dc98395" }, "downloads": -1, "filename": "RNG-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8ac61dcc71064653f04b146c3cbc9c6a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 105826, "upload_time": "2019-05-30T17:47:37", "url": "https://files.pythonhosted.org/packages/da/6d/e289348d1ef11191d5e07367f997af18238f789533884508eb5640c07951/RNG-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "acdc820ad35ae6d2782c98f8d981c0a7", "sha256": "5bb8d9a7a1f52b3098bc82a740b795fd202786bbadf6922a64af007f33d7d208" }, "downloads": -1, "filename": "RNG-1.3.0.tar.gz", "has_sig": false, "md5_digest": "acdc820ad35ae6d2782c98f8d981c0a7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 113536, "upload_time": "2019-05-30T17:47:39", "url": "https://files.pythonhosted.org/packages/96/75/e70f4a5ba531034767323e0978d152f0ee00d166e8f2e1748c8276459c5e/RNG-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "e56ee11f81555c84a1f3300d0b64cb83", "sha256": "496ae69a76d179685a808024870ff06bc583c7ec038dfc06e3100cfbc3755afa" }, "downloads": -1, "filename": "RNG-1.3.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e56ee11f81555c84a1f3300d0b64cb83", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 105838, "upload_time": "2019-05-30T17:49:17", "url": "https://files.pythonhosted.org/packages/83/17/5dcac9f30eff8838fc4adbd96889f311e3aa6fb575408e2df251c6d20bf4/RNG-1.3.1-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "522316d89c8beb7039534e7f4a44a3ce", "sha256": "a1a1d603ae1b381c333f65d7039c0e5f38171f9d2fc8034c662d1d53b558959f" }, "downloads": -1, "filename": "RNG-1.3.1.tar.gz", "has_sig": false, "md5_digest": "522316d89c8beb7039534e7f4a44a3ce", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 113597, "upload_time": "2019-05-30T17:49:19", "url": "https://files.pythonhosted.org/packages/f2/03/b917fd9c27b8182629e5b6f96d0695fb68c86de90a7e43aafa0068f63f06/RNG-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "c4fd7ac4d81d7f7c8e4ad8efa37781d3", "sha256": "27be05af41d893a1eecf47920fef18b859ba1035f08e08f486911b4b17afd5de" }, "downloads": -1, "filename": "RNG-1.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c4fd7ac4d81d7f7c8e4ad8efa37781d3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 97371, "upload_time": "2019-06-02T06:18:13", "url": "https://files.pythonhosted.org/packages/2c/c6/a2f1949d396b5a49320ce0a0e4657101e486f4877e0ba8332174bad25ad0/RNG-1.3.2-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b2ade6d472776069c1b6cbc9399dc36b", "sha256": "742244b7b7306233a4b5a77afe5133e22485daf8349d88e73c103022f2a2ef71" }, "downloads": -1, "filename": "RNG-1.3.2.tar.gz", "has_sig": false, "md5_digest": "b2ade6d472776069c1b6cbc9399dc36b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 101228, "upload_time": "2019-06-02T06:18:15", "url": "https://files.pythonhosted.org/packages/e1/20/33deb2c0874777005d1969bb1e400090cca30089f461d859bace6780f7c9/RNG-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "58c75557496436155be6155af0ca188c", "sha256": "43a5a3b8e484a9578e11e3b251b9c96213b6e11fa01b09a9ab114d6f85c914c7" }, "downloads": -1, "filename": "RNG-1.3.3-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "58c75557496436155be6155af0ca188c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 97346, "upload_time": "2019-06-03T23:12:32", "url": "https://files.pythonhosted.org/packages/0a/a4/a38d4d9e603b2a0864f9eba42cc709fbccaa6f1b879a842d63e1de65a19d/RNG-1.3.3-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fdc8710b0d086dcb00abfdba51296d71", "sha256": "61030fb01e49d0cf85bc4a80ab7e7c4b0a015fbef31c0aa9c4118131dc5ca848" }, "downloads": -1, "filename": "RNG-1.3.3.tar.gz", "has_sig": false, "md5_digest": "fdc8710b0d086dcb00abfdba51296d71", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 101132, "upload_time": "2019-06-03T23:12:34", "url": "https://files.pythonhosted.org/packages/9a/de/ea561687c83b62f6f3018818818ab2aa8cdbd9b09db0ddada0b0e6f3aaaf/RNG-1.3.3.tar.gz" } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "69886af98753fb5fb4e525c3ed9aaca1", "sha256": "8f088d271fe54ec9a024fac1ffd52117103e5d4145d9f16bc8269ac306a3e135" }, "downloads": -1, "filename": "RNG-1.3.4-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "69886af98753fb5fb4e525c3ed9aaca1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 101203, "upload_time": "2019-08-26T19:55:25", "url": "https://files.pythonhosted.org/packages/fd/6f/30e237d12a882242a88b74b70503a24aa933f3dc5c3eae485b0195aa6b1f/RNG-1.3.4-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3b89accf30a35ef3b91e64e1069724a2", "sha256": "e481e18ed1eb39be3b44d6a2ce1623464265aaeb4cacf419a560dc189fe2e21f" }, "downloads": -1, "filename": "RNG-1.3.4.tar.gz", "has_sig": false, "md5_digest": "3b89accf30a35ef3b91e64e1069724a2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 102540, "upload_time": "2019-08-26T19:55:27", "url": "https://files.pythonhosted.org/packages/6b/71/2329c23db6e0e39e3d1893eb2e4a39146c9b12305e8845e739ed2d7407d9/RNG-1.3.4.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "631d1cb2364c691cf515e73d8c94fdbc", "sha256": "1790183e71c6c0f0845f01deea11d0d65fe0d54e51103102c9d780a37cf4e05d" }, "downloads": -1, "filename": "RNG-1.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "631d1cb2364c691cf515e73d8c94fdbc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 104559, "upload_time": "2019-08-27T06:02:08", "url": "https://files.pythonhosted.org/packages/3b/96/8427e7f1a2610266519f3754af97d50147fce1ab5a12df4b43acc3626477/RNG-1.4.0-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "573a7fd38bc55daae4211b3bb15ee3fe", "sha256": "15c6b6c3237f25439ebed7667b00c84a997c0c9219da9e726abfea4e56fcf4da" }, "downloads": -1, "filename": "RNG-1.4.0.tar.gz", "has_sig": false, "md5_digest": "573a7fd38bc55daae4211b3bb15ee3fe", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 101366, "upload_time": "2019-08-27T06:02:11", "url": "https://files.pythonhosted.org/packages/1a/dc/9c0210cd1b24d4e3ccecd745321934ff5f899b8a10a208eb5ed5bf2fc971/RNG-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "089451ec74acf76537f8968ca5a04c76", "sha256": "b29eefad98bc9ec04de1f8b3d6c24147d9b8c8017f08792de853731f8cecf6c9" }, "downloads": -1, "filename": "RNG-1.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "089451ec74acf76537f8968ca5a04c76", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 109078, "upload_time": "2019-08-27T07:20:44", "url": "https://files.pythonhosted.org/packages/0c/5a/efc873bb0c0f605bd3bbd5c1dfebca1589bb97e66cda941d9c13d5617df6/RNG-1.4.1-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9bda2b7331010a8e9441d56203fbcd6e", "sha256": "4fd900cecf577f48dcf274ec11ec07884629d45ff5073b66c57f85d7f330615a" }, "downloads": -1, "filename": "RNG-1.4.1.tar.gz", "has_sig": false, "md5_digest": "9bda2b7331010a8e9441d56203fbcd6e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 100792, "upload_time": "2019-08-27T07:20:46", "url": "https://files.pythonhosted.org/packages/f7/df/a756a84c17d63f010f14c478a91abc1f78ef0498a8c7a499a5bdf79e90a1/RNG-1.4.1.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "1058ad61559c80368443b8211350ef39", "sha256": "b780be73b906f49347ba6d935ee91008c4b5941393fcd4a00c32af5fa52e9850" }, "downloads": -1, "filename": "RNG-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1058ad61559c80368443b8211350ef39", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 99909, "upload_time": "2019-08-27T09:17:42", "url": "https://files.pythonhosted.org/packages/39/b9/06dac6f0597803d0a93ccdfb773b2aa5024fb536ae140acc8e003e884e47/RNG-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "022c1c1f6fef2219b8c0c364d0dd561b", "sha256": "11926eed8b93b2f6512eee776c7a0ffc91b201badc64df12ab6c8bc8ea7040be" }, "downloads": -1, "filename": "RNG-1.5.0.tar.gz", "has_sig": false, "md5_digest": "022c1c1f6fef2219b8c0c364d0dd561b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 98816, "upload_time": "2019-08-27T09:17:44", "url": "https://files.pythonhosted.org/packages/ab/e5/4c39e783557180d506d84cfb6f0c713f7ca10fb21f8c017025181155e363/RNG-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "90fdf44e5ca0bcf422144db6027b3bb6", "sha256": "808371790622271b645b1abced2f78b5cc34799c05a864c4329f78a3c51a32bb" }, "downloads": -1, "filename": "RNG-1.5.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "90fdf44e5ca0bcf422144db6027b3bb6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 39605, "upload_time": "2019-08-28T01:03:20", "url": "https://files.pythonhosted.org/packages/8e/4f/20accc8828400004da78a3d369414a997b0e599e4c21dc3e291bc84a2922/RNG-1.5.1-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8119e9707d18552acd8c8a4c0619b6dc", "sha256": "aa83c9bed282766e04db02fad2157056f0f42ab38b97abc30a2c9ef9cf6f22af" }, "downloads": -1, "filename": "RNG-1.5.1.tar.gz", "has_sig": false, "md5_digest": "8119e9707d18552acd8c8a4c0619b6dc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 53603, "upload_time": "2019-08-28T01:03:22", "url": "https://files.pythonhosted.org/packages/66/de/7c926bef5a33f7c1d136c4b8252fe74b86edab571d716f7666e1d7f0c8f2/RNG-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "4a6ffb8add90a606830c0f724305340e", "sha256": "ee98213c958aa5e6b2dcaaf74c84fa0b9bc11b8a92ae09c36f641f02eaeb07b3" }, "downloads": -1, "filename": "RNG-1.5.2-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4a6ffb8add90a606830c0f724305340e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 39736, "upload_time": "2019-08-29T19:36:38", "url": "https://files.pythonhosted.org/packages/3a/f2/895590073d83a63840913e307b56485ce69df911f82efc0c1b62a34314c0/RNG-1.5.2-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "613bce0fb8f6ae3c596af76ed3e9122d", "sha256": "c3e60d928e911d36b43865277e73dbf96b3a44d74cca49cfcc8a0cd41e2671e2" }, "downloads": -1, "filename": "RNG-1.5.2.tar.gz", "has_sig": false, "md5_digest": "613bce0fb8f6ae3c596af76ed3e9122d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 53986, "upload_time": "2019-08-29T19:36:40", "url": "https://files.pythonhosted.org/packages/92/98/8f355cfcf4b518f860ffcebd07853f09fcbb2ad6667be05323030966f015/RNG-1.5.2.tar.gz" } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "9d56c379ef7cd121811ed077a612bce5", "sha256": "5d82d5460ebce5545830d2b01b32b3bfa0477fa5f693f2d5e1de00d7d76c2440" }, "downloads": -1, "filename": "RNG-1.5.3-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9d56c379ef7cd121811ed077a612bce5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 39646, "upload_time": "2019-08-29T19:59:41", "url": "https://files.pythonhosted.org/packages/d3/8d/654624daff90ec70e5ebea5673158ddcbabc7956fdb9b7607ab26179b1ec/RNG-1.5.3-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f3cf2e482f62d17d5b33947ae5b4aad1", "sha256": "5e7a875086a4249d95b39c3eefd590f31bf09ec65f800597d8cf3af729aac2b8" }, "downloads": -1, "filename": "RNG-1.5.3.tar.gz", "has_sig": false, "md5_digest": "f3cf2e482f62d17d5b33947ae5b4aad1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 53773, "upload_time": "2019-08-29T19:59:43", "url": "https://files.pythonhosted.org/packages/a1/c0/89da818184f1f89f54d45309e735b85d11bfc19cb1a1a978e0b1db3f61b3/RNG-1.5.3.tar.gz" } ], "1.5.4": [ { "comment_text": "", "digests": { "md5": "8f1b4a5c7b133bcf7ef792809ca82a35", "sha256": "7feb145dc5f3a8335e8f4f8f1ade1b592d0b40c3c120104eb7cada9a424b6731" }, "downloads": -1, "filename": "RNG-1.5.4-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8f1b4a5c7b133bcf7ef792809ca82a35", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 40257, "upload_time": "2019-08-30T00:36:38", "url": "https://files.pythonhosted.org/packages/c0/71/85d089d89c62d690275ac80c9139c361c1678f261c1a7e2eb5c5468f6d91/RNG-1.5.4-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4463dd04d111fbcf998eaed95390c570", "sha256": "7f6c5818147ca6079f4f04a290f5c90eb511ce2ad19ad1ddadbae32941da2dab" }, "downloads": -1, "filename": "RNG-1.5.4.tar.gz", "has_sig": false, "md5_digest": "4463dd04d111fbcf998eaed95390c570", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 54180, "upload_time": "2019-08-30T00:36:40", "url": "https://files.pythonhosted.org/packages/a2/cb/bdbbaa4e22f496b30f6919a1430fd097f6bd801428d0e2421545d6f7a920/RNG-1.5.4.tar.gz" } ], "1.5.5": [ { "comment_text": "", "digests": { "md5": "7678c54910e3624cb595790bdbb2fa41", "sha256": "7b019f04ac7eec91eba28281ff1d668dbad8d433bc7e53ac6eb8db6cdf7239bc" }, "downloads": -1, "filename": "RNG-1.5.5-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7678c54910e3624cb595790bdbb2fa41", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 40235, "upload_time": "2019-09-07T08:22:23", "url": "https://files.pythonhosted.org/packages/ee/0f/685305118bb75118642ab2601c26cf88e5b634bcae1c1eeb6689c1ed0406/RNG-1.5.5-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c2e3f33409ceeddd0986536d1d24e60a", "sha256": "8f2aadca4cb5d0ff4d140b78c11f07209b052d63af676e5ef1e6925031ec92c6" }, "downloads": -1, "filename": "RNG-1.5.5.tar.gz", "has_sig": false, "md5_digest": "c2e3f33409ceeddd0986536d1d24e60a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 54110, "upload_time": "2019-09-07T08:22:24", "url": "https://files.pythonhosted.org/packages/14/65/0edfdddeb4b1e3fdeeb9fc8741195a8ccfddbdce359e988658f528cf0c08/RNG-1.5.5.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "505102c3191601833c325db1c14b6c55", "sha256": "c31030b00830343ef68a95997b27b6a76a522e1fc741d6e09790581a2fd2d6ab" }, "downloads": -1, "filename": "RNG-1.6.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "505102c3191601833c325db1c14b6c55", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 39916, "upload_time": "2019-09-26T23:19:12", "url": "https://files.pythonhosted.org/packages/e7/d1/6016c34ae732b84a2db1aa44f0536d62094639e559402de75844142c525f/RNG-1.6.0-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e98048d96884ef83fe055be06d62b859", "sha256": "c20e511f8811feeba568d1b6081a7c28b0dcccc4adf65ccaa2c2297369a4c75f" }, "downloads": -1, "filename": "RNG-1.6.0.tar.gz", "has_sig": false, "md5_digest": "e98048d96884ef83fe055be06d62b859", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 53586, "upload_time": "2019-09-26T23:19:14", "url": "https://files.pythonhosted.org/packages/56/fe/49b15fd0a692b73781b33a72bce26f40af67d3877ab996a306e70aabc469/RNG-1.6.0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "054ce005e9841ee5c135eb667adb0006", "sha256": "28e2cbb9440c7140d78d78e353810d9cbf9a717c59bfc7fb2c68dc4f0ee6b6af" }, "downloads": -1, "filename": "RNG-1.6.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "054ce005e9841ee5c135eb667adb0006", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 41006, "upload_time": "2019-10-01T07:10:55", "url": "https://files.pythonhosted.org/packages/0f/e9/7c5cf2545ba7a9b757b1b8eedf08ee6382bb4849746f0d298e9f9acfc344/RNG-1.6.1-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e3a60231c9a4aa97c5843ec484b64a3f", "sha256": "6bf4ba6e64088b2a93e5a7c774658536262b0c035c9d45bbd07a9992c012cfcd" }, "downloads": -1, "filename": "RNG-1.6.1.tar.gz", "has_sig": false, "md5_digest": "e3a60231c9a4aa97c5843ec484b64a3f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 53898, "upload_time": "2019-10-01T07:10:57", "url": "https://files.pythonhosted.org/packages/07/35/325a704a2d0987c5f5ecc70dc46de5dc4d8c7c37bb081a584b26bf2eb440/RNG-1.6.1.tar.gz" } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "bcf1c8b099b5518cfdb73b98b3242b59", "sha256": "9c6a4be94de7f1e46cda880696fe61bd3fb9a93317c523fad641156efd0c57ae" }, "downloads": -1, "filename": "RNG-1.6.2-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bcf1c8b099b5518cfdb73b98b3242b59", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 41012, "upload_time": "2019-10-01T07:12:40", "url": "https://files.pythonhosted.org/packages/5a/6b/209f4b2084181dfc995a0db5bc2a78369470b05820137095597cb66b92a8/RNG-1.6.2-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "621b7c0cc6efa451fde34a5a57781cdb", "sha256": "34d37b4bc92ca37850d8802bed8851fad678486b9fdb02fec22384b3b518ffa7" }, "downloads": -1, "filename": "RNG-1.6.2.tar.gz", "has_sig": false, "md5_digest": "621b7c0cc6efa451fde34a5a57781cdb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 53924, "upload_time": "2019-10-01T07:12:42", "url": "https://files.pythonhosted.org/packages/80/f7/e135f9244bf257ba68ee078db5240372f62e98ddd89e21570ab3206f950d/RNG-1.6.2.tar.gz" } ], "1.6.3": [ { "comment_text": "", "digests": { "md5": "99cc0400d79805bd2a7945d3896f8591", "sha256": "a75049dd9322216f16f18024ac8320102e723e3c56e202bdbcd125f85cbf075d" }, "downloads": -1, "filename": "RNG-1.6.3-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "99cc0400d79805bd2a7945d3896f8591", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 41015, "upload_time": "2019-10-01T07:15:24", "url": "https://files.pythonhosted.org/packages/54/ef/20d6523a0dcd314dc7cf2a4a831423f0bece8fd6c70ff449c94ed79e1e5e/RNG-1.6.3-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7b97766b8678b433153551e0bd4ba64b", "sha256": "d85f1b3d1cc008c0b7c599e20f9fb6d01fc9f7b2ae1ca914640215ac54d1f3fd" }, "downloads": -1, "filename": "RNG-1.6.3.tar.gz", "has_sig": false, "md5_digest": "7b97766b8678b433153551e0bd4ba64b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 53937, "upload_time": "2019-10-01T07:15:26", "url": "https://files.pythonhosted.org/packages/9c/4d/204f99b6f20cb85d362da123b6820408324aca38acc59ad6b8c8f4edeb47/RNG-1.6.3.tar.gz" } ], "1.6.4": [ { "comment_text": "", "digests": { "md5": "5c39212af511daeca8755a71158fa730", "sha256": "287924235c0de79bf8a3214ea87d9ae3a9c4369a219f4171b693083172cd4666" }, "downloads": -1, "filename": "RNG-1.6.4-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5c39212af511daeca8755a71158fa730", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 41013, "upload_time": "2019-10-03T17:13:46", "url": "https://files.pythonhosted.org/packages/01/6c/a5066e107c89815ec882d44e22a18ad4f86abdb87765deef79d2fd88537b/RNG-1.6.4-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ba6cbf665a839e55d545d66893a9d8a2", "sha256": "fe6cc6027c65d66a2130e2a14fbed56bdad89bf6d0f576643ef19ca22002589d" }, "downloads": -1, "filename": "RNG-1.6.4.tar.gz", "has_sig": false, "md5_digest": "ba6cbf665a839e55d545d66893a9d8a2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 53943, "upload_time": "2019-10-03T17:13:48", "url": "https://files.pythonhosted.org/packages/bf/59/0fc0ab004c184d3791ee8ebb54f1e5dd99103293b190b8242ec93951d8c6/RNG-1.6.4.tar.gz" } ], "1.6.5": [ { "comment_text": "", "digests": { "md5": "f6503f62e602b6da1bc9bba03d930e16", "sha256": "fd2a5c6a487b74365029ea024b5d39995cdd6004212b43b4a754a95c49890cdf" }, "downloads": -1, "filename": "RNG-1.6.5-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f6503f62e602b6da1bc9bba03d930e16", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 40976, "upload_time": "2019-10-15T17:27:25", "url": "https://files.pythonhosted.org/packages/86/de/072182274fd11f43113b73f9e1aa8fc239d32266d25f1c4ca69693698eb0/RNG-1.6.5-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c12c83c7156e485865457ec5ea6c767f", "sha256": "f451fbd1f309a6f804772d3b82c9c1b4d060005bc02d61a2f99c94a2796e954b" }, "downloads": -1, "filename": "RNG-1.6.5.tar.gz", "has_sig": false, "md5_digest": "c12c83c7156e485865457ec5ea6c767f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 53831, "upload_time": "2019-10-15T17:27:27", "url": "https://files.pythonhosted.org/packages/1a/f8/92eef746741a520cfd6cd789275c8918509eb758b14ac9261b295a5ca94b/RNG-1.6.5.tar.gz" } ], "1.6.6": [ { "comment_text": "", "digests": { "md5": "6e92d3adcc260216dcb6e09800eefb4c", "sha256": "de637f2f61f29418fe1408a86c7e54ce740dbbff756e7afac3e5f580f152f161" }, "downloads": -1, "filename": "RNG-1.6.6-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6e92d3adcc260216dcb6e09800eefb4c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 40957, "upload_time": "2019-10-15T18:39:41", "url": "https://files.pythonhosted.org/packages/5a/cd/2e987a2a8fcbfe0c8c11f78462f81b8bc205f3f5a4344f67f4b79099a441/RNG-1.6.6-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2c16fb39a17e9dfbe2ebafa1a1ee2087", "sha256": "578e1c4c5063a1d9e8ea867c545c7a13281a01cdd3547798fec2d0f9efa5bd8e" }, "downloads": -1, "filename": "RNG-1.6.6.tar.gz", "has_sig": false, "md5_digest": "2c16fb39a17e9dfbe2ebafa1a1ee2087", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 53804, "upload_time": "2019-10-15T18:39:42", "url": "https://files.pythonhosted.org/packages/89/0a/77e39ed1714754ac5a52365f4355402ac53496b9c8462a8ad5d08d623c47/RNG-1.6.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6e92d3adcc260216dcb6e09800eefb4c", "sha256": "de637f2f61f29418fe1408a86c7e54ce740dbbff756e7afac3e5f580f152f161" }, "downloads": -1, "filename": "RNG-1.6.6-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6e92d3adcc260216dcb6e09800eefb4c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 40957, "upload_time": "2019-10-15T18:39:41", "url": "https://files.pythonhosted.org/packages/5a/cd/2e987a2a8fcbfe0c8c11f78462f81b8bc205f3f5a4344f67f4b79099a441/RNG-1.6.6-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2c16fb39a17e9dfbe2ebafa1a1ee2087", "sha256": "578e1c4c5063a1d9e8ea867c545c7a13281a01cdd3547798fec2d0f9efa5bd8e" }, "downloads": -1, "filename": "RNG-1.6.6.tar.gz", "has_sig": false, "md5_digest": "2c16fb39a17e9dfbe2ebafa1a1ee2087", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 53804, "upload_time": "2019-10-15T18:39:42", "url": "https://files.pythonhosted.org/packages/89/0a/77e39ed1714754ac5a52365f4355402ac53496b9c8462a8ad5d08d623c47/RNG-1.6.6.tar.gz" } ] }