Skip to main content

Fast random number generation in Python

Project description

fastrand

Fast random number generation in Python using PCG

Blog post: Ranged random-number generation is slow in Python…

Usage... (don't forget to type the above lines in your shell!)

import fastrand

print("generate an integer in [0,1001)")
fastrand.pcg32bounded(1001) 
print("Generate a random 32-bit integer.")
fastrand.pcg32()

It is nearly an order of magnitude faster than the alternatives:

python -m timeit -s 'import fastrand' 'fastrand.pcg32bounded(1001)'
10000000 loops, best of 3: 0.0602 usec per loop
python -m timeit -s 'import random' 'random.randint(0,1000)'
1000000 loops, best of 3: 0.698 usec per loop
python -m timeit -s 'import numpy' 'numpy.random.randint(0, 1000)'
1000000 loops, best of 3: 0.795 usec per loop

If you have Linux, macOS or Windows, you should be able to do just pip install...

pip install fastrand

You may need root access (sudo on macOS and Linux).

It is sometimes useful to install a specific version, you can do so as follows;

pip install fastrand==1.2.4

Generally, you can build the library as follows (if you have root):

python setup.py build
python setup.py install 

or

python setup.py build
python setup.py install --home=$HOME
export PYTHONPATH=$PYTHONPATH:~/lib/python

Changing the seed and multiple streams

  • You can change the seed with a function like pcg32_seed. The seed determines the random values you get. Be mindful that naive seeds (e.g., int(time.time())) can deliver poor initial randomness. A few calls to pcg32() may help to boost the improve the randomness. Or else you may try a better seed.

  • If you need to produce multiple streams of random numbers, merely changing the seed is not enough. You are better off using different increments by calling the pcg32inc. The increments should all be distinct. Note that the least significant bit of the increment is always set to 1 no matter which value you pass: so make sure your increments are distinct 31-bit values (ignoring the least significant bit).

future work

Also look at https://github.com/rkern/line_profiler

Reference

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastrand-1.7.0.tar.gz (7.6 kB view details)

Uploaded Source

Built Distributions

fastrand-1.7.0-pp39-pypy39_pp73-win_amd64.whl (12.1 kB view details)

Uploaded PyPy Windows x86-64

fastrand-1.7.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

fastrand-1.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (10.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

fastrand-1.7.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (8.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

fastrand-1.7.0-pp38-pypy38_pp73-win_amd64.whl (12.1 kB view details)

Uploaded PyPy Windows x86-64

fastrand-1.7.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

fastrand-1.7.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (10.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

fastrand-1.7.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (8.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

fastrand-1.7.0-pp37-pypy37_pp73-win_amd64.whl (12.1 kB view details)

Uploaded PyPy Windows x86-64

fastrand-1.7.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

fastrand-1.7.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (10.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

fastrand-1.7.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (8.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

fastrand-1.7.0-cp311-cp311-win_amd64.whl (12.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

fastrand-1.7.0-cp311-cp311-win32.whl (11.7 kB view details)

Uploaded CPython 3.11 Windows x86

fastrand-1.7.0-cp311-cp311-musllinux_1_1_x86_64.whl (22.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

fastrand-1.7.0-cp311-cp311-musllinux_1_1_i686.whl (22.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

fastrand-1.7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

fastrand-1.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (17.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

fastrand-1.7.0-cp311-cp311-macosx_11_0_arm64.whl (9.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

fastrand-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl (8.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

fastrand-1.7.0-cp311-cp311-macosx_10_9_universal2.whl (11.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

fastrand-1.7.0-cp310-cp310-win_amd64.whl (12.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

fastrand-1.7.0-cp310-cp310-win32.whl (11.7 kB view details)

Uploaded CPython 3.10 Windows x86

fastrand-1.7.0-cp310-cp310-musllinux_1_1_x86_64.whl (21.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

fastrand-1.7.0-cp310-cp310-musllinux_1_1_i686.whl (21.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

fastrand-1.7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

fastrand-1.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (17.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

fastrand-1.7.0-cp310-cp310-macosx_11_0_arm64.whl (9.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

fastrand-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl (8.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

fastrand-1.7.0-cp310-cp310-macosx_10_9_universal2.whl (11.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

fastrand-1.7.0-cp39-cp39-win_amd64.whl (12.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

fastrand-1.7.0-cp39-cp39-win32.whl (11.7 kB view details)

Uploaded CPython 3.9 Windows x86

fastrand-1.7.0-cp39-cp39-musllinux_1_1_x86_64.whl (21.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

fastrand-1.7.0-cp39-cp39-musllinux_1_1_i686.whl (21.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

fastrand-1.7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

fastrand-1.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (16.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

fastrand-1.7.0-cp39-cp39-macosx_11_0_arm64.whl (9.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

fastrand-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl (8.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

fastrand-1.7.0-cp39-cp39-macosx_10_9_universal2.whl (11.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

fastrand-1.7.0-cp38-cp38-win_amd64.whl (12.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastrand-1.7.0-cp38-cp38-win32.whl (11.7 kB view details)

Uploaded CPython 3.8 Windows x86

fastrand-1.7.0-cp38-cp38-musllinux_1_1_x86_64.whl (21.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

fastrand-1.7.0-cp38-cp38-musllinux_1_1_i686.whl (21.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

fastrand-1.7.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

fastrand-1.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (17.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

fastrand-1.7.0-cp38-cp38-macosx_11_0_arm64.whl (9.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

fastrand-1.7.0-cp38-cp38-macosx_10_9_x86_64.whl (8.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

fastrand-1.7.0-cp38-cp38-macosx_10_9_universal2.whl (11.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

fastrand-1.7.0-cp37-cp37m-win_amd64.whl (12.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

fastrand-1.7.0-cp37-cp37m-win32.whl (11.7 kB view details)

Uploaded CPython 3.7m Windows x86

fastrand-1.7.0-cp37-cp37m-musllinux_1_1_x86_64.whl (22.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

fastrand-1.7.0-cp37-cp37m-musllinux_1_1_i686.whl (22.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

fastrand-1.7.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

fastrand-1.7.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (17.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

fastrand-1.7.0-cp37-cp37m-macosx_10_9_x86_64.whl (8.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

fastrand-1.7.0-cp36-cp36m-win_amd64.whl (12.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

fastrand-1.7.0-cp36-cp36m-win32.whl (12.0 kB view details)

Uploaded CPython 3.6m Windows x86

fastrand-1.7.0-cp36-cp36m-musllinux_1_1_x86_64.whl (21.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

fastrand-1.7.0-cp36-cp36m-musllinux_1_1_i686.whl (21.7 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

fastrand-1.7.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

fastrand-1.7.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (17.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

fastrand-1.7.0-cp36-cp36m-macosx_10_9_x86_64.whl (8.7 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file fastrand-1.7.0.tar.gz.

File metadata

  • Download URL: fastrand-1.7.0.tar.gz
  • Upload date:
  • Size: 7.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for fastrand-1.7.0.tar.gz
Algorithm Hash digest
SHA256 514ad8bf882dcf95c1e871002686d67850db9f1986d17cb3f949729c051263cf
MD5 5efb2ff24ff7139e1b03a70dd70d02f9
BLAKE2b-256 4ac984ae3fa10cb24bd5ac88845a55ddddc572d165218e29613063763f12d8c4

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5d08f394eaa03e0c908109f3cd0c896d2ab933d847aabd3ba35f57bd949373cd
MD5 c08d4129c4ed399296fe867d07fc6600
BLAKE2b-256 b9dfff7f0ef900440221425b47797387f79e436fc4ffb405d951e585bc3ac017

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a6c5974045d33be3df60b42308eb1b356174b5a8d551a44f31cb26324d8ced8
MD5 e5d0592fd8272c4b5825a2bb98b7b123
BLAKE2b-256 b5b84b2d389c6def5e43beba22cab7fcfafd6d46d56b84418526027b1cc0c0b6

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af838e45926ae730e9935a63c7192f059dc617f0469e6991d509894dd00985e6
MD5 0d4af03aa267ed020fe9ad89a909189c
BLAKE2b-256 7b64fb165c27d66417dfc97ff2afd37c23dd3862bb0361f12e8ad3d9efff4636

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cfdc318d3c9965e330e46e1ae4ceea3553efdc7c0a3619c43f9f8957d7fddaad
MD5 e2357cf124c32d49faeb597f6e0b0847
BLAKE2b-256 4d99cd361b77416aa1c214470ac1e7f37c6196d0c06d1e48aefb9d32765d1774

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4abfa5865c72a7e321ca737441cd6bbb0a5641132a6dda8680eb156626673c3c
MD5 d8ba0576eb05884c8221bfedd1609e98
BLAKE2b-256 aec5c235455af4ac0c235f8eb87225932a1f72f9d11027b54c7f5557db079408

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67530a750263afaea8555a1aa15abce58031c75ab34bce8576e0ed4217932504
MD5 80ccdc91e1bc3c086a5a0c7d1b509ca6
BLAKE2b-256 985a4eba22526ddc3bcb185282cc3ae1c5e700e856c853e0d723c3cbf9f47cf2

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a47976cb8eac4fd112dee60de363a77086c33c391d306e5cc4ca3ff283a3644
MD5 cd9a3f4cd31b3c01ca29d4b0b67c85b8
BLAKE2b-256 53d92e40a21f83e9ccba62688300c9728ee9b54f332c3c7297f41f91e1db2388

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 68502249463f316b354df82f23141bad7e4cde415df74d4b373681514a96b1fb
MD5 fa1aef57479a2172092f59f623f38236
BLAKE2b-256 9ba66d5a814794bc1f3c5b27afb5e727fbfd75174249884fc4ab547bb79d8585

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6b1a08d3925928d04c07e322c7f7c255a5e8240204b754f6192b1709c94f109f
MD5 497f3a3e81d4d97d9887fda3563121f1
BLAKE2b-256 f5431fb3974b47da43c6e5b74f31712f71b214997a0ecc66b92b013fd458ac2f

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 815ba52595db108dd13497b7ac0855823dbdca0effb30248ef50c82bdc09a0d7
MD5 12656fd8cc5bdda6073708bdaf37e4d6
BLAKE2b-256 dee9099aa2bfaf38ad62a060f8b8a517b037111852c2384a9f4f76d749aeb03e

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07f3b2029475fd0a7142a29154c0c1a38f7c19662b68da4e3149da77f51ed2ef
MD5 0b0f783dead26b25638d141647c3896a
BLAKE2b-256 4b58b51cd81e42e89f7a8ff4ffb19313ded9c4ca49552551b79b4aa792e83cb1

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e8e818aaa947310254d56c61a627ea613248c95e0aca9d8ef5fa96183de3a694
MD5 16de650cc3f05d2cd3e47a9281efb766
BLAKE2b-256 bde688dfa7f64ebf5f95955c1fa3bfe76f4fb37d0dd369cd2565779a30dcb0a5

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e8a24c2cb1626c8a439f391ce88fe7758f9d1e9b42c144732e97e66a29ff8776
MD5 2057a83dfdcaaa54ec38c60eed59a2d1
BLAKE2b-256 b89a1ad1a2405bcd3be019797100cacc2354662f173a0d40c3801833305c061f

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: fastrand-1.7.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 11.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for fastrand-1.7.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 99d9236badc7f1cfc6aa3e136e1e3109cfd5a85b029454afd409556aaf7748da
MD5 079f5162b4d6c888ce6559c9dab7f760
BLAKE2b-256 eb3189e68cc6e2972f4c81d6f2347f2ad1cd88bea4c64c41cde411b3a4c72269

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5b0dd540ba066dc69b4895ad531173486909563373c47fd30f451a326e28bf46
MD5 dff392bd24ea0539e0c016d3b3a63780
BLAKE2b-256 f8a46ea0eac796108f59f6c752a277dcde1572cc19143217ae4793b5ecb4c628

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0e40c7c92d10d5488ed1b1e6cc49b769600bea80498c9aa225abf26902c10ed0
MD5 55ae1238adb0480b30be94bb96136f73
BLAKE2b-256 86a51c26eff76cd2dfc222fafc44ac10bfec9fff2aa3a296667790ecdba32a69

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47ac4824e925a52f7ceee5688e5061e7be4b4e6299947f23e135a0ea96d2b3cb
MD5 76ee56c833c8809757da3519ee5d163f
BLAKE2b-256 d64843cb4c1297db143707af657c5c11892aabeabd17703917474237f898401b

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a772dc174ebd44aa8106c2073aa6188c3289c508c6deeebacdbc7caab6f59f0
MD5 c0d80d726cde75e542d922e13f3bb038
BLAKE2b-256 bceda9ed01f166cc3caddddfd990bc1be0f3c54b8dd9b27bdc99f4747e0f0f2d

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b9a6110c5457d41b6457dc1dd3c46ec8750d191486a0d0f3a85b782a56d6f22
MD5 7d2e3f2196fec4f8e6bb1bf45623b46e
BLAKE2b-256 a3264525835831aa46e7a4830d73a591d88c541bf2c95fefb9a689f757dd41c2

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 31e7a2f87b7ec6c4162c9ef83150a06d992a7bd7e9dac4b075966401c4a87134
MD5 d47ccbdebd94cce206ad26dd286c3415
BLAKE2b-256 dba043b273b49ef7f3e40ba9ea9b1204ca2516b9e9604b3fdda6754ed07ca85f

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 68775c24637c788d1b013fa2e8804fb8b5433d5bf41480ca3ad82fa4cb7ba6b9
MD5 b68639de9a1e62f0008f2d740d606b31
BLAKE2b-256 34907aedae82cf43d7fc51f668f07e2a42224621b42dca9c9274c6a14de83d26

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2745d69b11e87aefd050a1d3e1044c755fe352b09983a3524d5a64ae9ef898ff
MD5 3ab914d8048ceb6970464688ea444491
BLAKE2b-256 e2a9fd196fc4d50a4ebbaad97a8a5adedc6657055442ca2447f770eaf8cf7a75

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: fastrand-1.7.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 11.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for fastrand-1.7.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d1df1cc360ed03e993939aed867121ebe962cc414ccc9ba147cd3556f37265ec
MD5 ba870403ab92be57933336577a64cf72
BLAKE2b-256 afeca7eb6f4af9b01fe839c6f3b487fbc95b76bd94cbec04c336c6012e472c1b

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 56c402eb2a926cdfa26ea2dc7112062fb24b4641bdbbd3845eb068aa02d67c7d
MD5 2f73c684792e360898cc3ab6af5b1c2e
BLAKE2b-256 872a49545ebbfd183b4ddb369743aab599cc6c3a39e1080e67dfb3fa19eb4bbd

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9d33f5387ecbe0cab201f3dc5ada28cf5807dc92e41c5144f6644b911c1c38a5
MD5 e775d0a3c92a2c372bd75c06fef3c252
BLAKE2b-256 f098ae8e37be09d916535c95abda99551f69ecd9503a7a542516f62f99c66129

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 181ed0606edd232639c02bf482a89c7dc5304f89c9204f74f74ae8f3417fdf58
MD5 c5cfaf334d1198b16f316fa0a680fc4a
BLAKE2b-256 6463137026557e086e005348a0e90a6a3edefed11ae519658b20dad233a3234d

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a868939d29856db01864310e8709926017d42ed7e5bfc4bf8f26596243c53311
MD5 aea248a260fd00aff3ec749c3b506103
BLAKE2b-256 0bc36a52c95f3c40aab5b770dc191401426cc217da8af8373adf1853344e2985

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9085ae9d4272b95389ee9c30d22d611849d7c750ea419d919d5f922d3ffb7a7a
MD5 8c1378fb43d3d8e6f833120bcc9960b3
BLAKE2b-256 e9c6990b5c7486408108715d224e8f2142916c8ceb3addc927a24b587afcc2e5

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db32132738f985e4b92f2b323bbd1fb0280096da0ed4aff7ebde31c126f6d047
MD5 188bdbd89f47ad35869102a6d172186d
BLAKE2b-256 2c08fa978ae96c03ca862ba70bb9b68b1f275136bea56c027b101b625ad36b53

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 09547ea4cf33303ee9e3670cb7d74c09a9eb125f52fff3d0a86961c63c38e59f
MD5 4bf75b74505d4e42b9eeff00d933dbcf
BLAKE2b-256 fbdeffa248774e91b82c711c95bc61b4c846723ff79dead0e0bfe13e5c0ad1d7

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fastrand-1.7.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 12.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for fastrand-1.7.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4e5f90b6800cf8c877f6729eb88e45b667e41cc420b8d2250cb240110d465c55
MD5 3dcefb766163acc130a821e4e1720e9c
BLAKE2b-256 e02ebdf6859d7826851445a6bb1e2af543dc8d9410a2fec820820ed4e6644c04

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: fastrand-1.7.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 11.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for fastrand-1.7.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f607584c52e198208a4fbaf3319aaf61b60077d9dc881090929524a35e8541c8
MD5 644664d7dddb5a3e2590f7bd91a33faf
BLAKE2b-256 a8e533affb5e0cfc18f818b6983bd5954f54a3d3864520a7dc9d67add16cd691

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2a3b124cab9edbb3a443a03922d644e70874f9c20df2f7a05eae8119f0bef379
MD5 240ab3719a994d4df20ed3f1d8e11dea
BLAKE2b-256 9f0636bb6696a51e3583a118e86b6dae20c6f02221b5b524eee0f6b64915261e

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ca3ebff28b0a7ca31c51458e85d7a41d92c50b6574e65b95a2f7699fcf7ed637
MD5 9672e94eccda32255951b2fa58f3256d
BLAKE2b-256 32e003f617dbabdad70e08fbc82c104ceae9e51e03cda22da500473b794f4f85

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61050b6a6a6806fa95ebd1123575fdf824e3928950d1f30f95606cfea85e0367
MD5 f78fbfa967680c7ce9960690a69ef2d4
BLAKE2b-256 15a180deb3a7940d5d4abfe77395f5fc81e5fd7a2f196ed92d49158819fb1de8

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2352496fe417ee6574af90416cede0e29584bf685a196e61895e4e01314b3249
MD5 f4c21c22b942843ae528da61d729bd7a
BLAKE2b-256 593eedee36ae640ad4db28bd174a6056f51c715e499d573d7efe7f0e7eecd23a

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6bdeee816b848c9b773ce285375a702e71d24bb8562330cda2ff88a7a122ab8
MD5 a7cd8c3e9966a9921a2b3054f5bb262a
BLAKE2b-256 e46d92f5d19733da9217b375756f0d05adb138319c25cf642053ab777801cc50

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af1af4134cc2bbf360c05bfc08d64184c05c5d1e4dda5669414fe5b0d0ca96c8
MD5 fc1577a0f1c973faf4d90e62a872fd03
BLAKE2b-256 f2efe6d5c5a66e8414cc6d3849f96ef41454a3c939743aa01cd4a89e6ccedec7

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 935a37bdad068b903634712eb7145aa1e262aa401b89f1c5c4f76c2dc0b7d776
MD5 a992d0a7d58144005f4ec069e7f42693
BLAKE2b-256 169dab8ff8a2eae0e1a2f612b965c46101ef47996c009954a595ae68bcc0cd05

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fastrand-1.7.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for fastrand-1.7.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2075b8ec79affcde6cbbf3ea4a37a4a0e2d9ca8a90ba6a3b9bdd981f9bd83742
MD5 10f41d7908fefd981dabd75b56e92d2e
BLAKE2b-256 d46b65f2600766e9ebf2da1b14764fc1c137b5143a9671ea3f0880aa04da5752

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: fastrand-1.7.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 11.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for fastrand-1.7.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 96a32ece2cf0662a3e5b8c640845fb81690e3271cef90932cbbe49486cfc91c5
MD5 4c384c8bbcbce9ec48c94ac0a7b56a46
BLAKE2b-256 dbd315d5f7811acc42c7532fc7f085bdff92bad9231abeff63ade81db50909de

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bb3628f45fb1e9079f845232b1af26c2c1ccea65d6c6e13b0e658894686953c1
MD5 44599e4d44348d233213647e5e0d2ed6
BLAKE2b-256 729897daec1511414956d6f8de66c9bf2c98bc7d13818afd33fe59e0a5926ad8

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c0ad498ec66db2b49dc1f002c1c1991a06553b22cffc34b08470c67dd4eccc3f
MD5 99f267e3fd39867cd59b0bc53d8fc740
BLAKE2b-256 8876c5f551657eb48a3a64bc4c60a8d4e41ba70fa80a123a5da1d16497365c9a

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28ab8d7a38c009148eab51924bb320a83c9b9fddff710c744e00b9e75ef1b0ea
MD5 041addc2cfe73ff96a02cb09bce29efc
BLAKE2b-256 aac8d571ea962aaec151cd41745150e2954eabb14b3e58f0a598afc496d2e4f1

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a7c051867e0e6c1790c9ade03b2a4dee04955f35368fe89a98a40af63ad16983
MD5 d48986d0da4ad9029752d33a6e78a3c0
BLAKE2b-256 b4fdd168dc597105edf34bf1c7de67bce6406008bd7851358e18f78d95a898fb

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acd9e5b4548c750b73fed872d03a688f0ff76cac1b74c3c4e82362fb06b99a4e
MD5 e6445a475f79ff6672eccb7ff8b88f0f
BLAKE2b-256 27ef2a2d0e7d70b3359ec3149d79acf677298c06572ea59394dc044e87d5afab

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3d16104e525f306ad67f410ebfa22901a71fe011d9728ef2883912e76eefa6e
MD5 76f86f2d32d18b1f10f3b3e2fa4347c0
BLAKE2b-256 8d6b06e91aef35f7759676e789dfdb7e55bdf5d93dee9d8c91a52faf728c88b7

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bb2dbb81451d1e49da6f752a836d86c7e636d9e4a39136b06101ed98bee9b734
MD5 c2a9d331df35317b60bae015516fd2eb
BLAKE2b-256 11da310605f73c3da99c7a21a8b2af1e3fe41c2de4ea5eb99f5535938b281250

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: fastrand-1.7.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 12.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for fastrand-1.7.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a142f7e9f98ac21dd09cbd645a242e3a8d6802888b81a0da5896765279c79742
MD5 fb6b211494a852356140ddd145f565e1
BLAKE2b-256 7430e43993e556018525d0a845c80ab3f5a91abbcceeb9441bf60861edfd9e07

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: fastrand-1.7.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 11.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for fastrand-1.7.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 aa4764fe759474c11c0760f243d198a80ed165b7b9055fa3f6cd4547a2c45cf6
MD5 7e0542de8ab274ba418888e8d7750fe3
BLAKE2b-256 13b015ee684a7f1e25ee4e9ec5c002cd5007c092d1ffa4aa4f96513937dd03c7

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d58001d7d2f5d7e552fe2163de9a597715550f268dd3440e0c60b22b859b6c64
MD5 c8ce46f01be4d3264bd8c17193fab321
BLAKE2b-256 a00c9e9ebff4bc736b984e6183ef8b76e6d78afcc472714e48b2476d5837e674

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 13edd4315c0758dbd52ee40e1321628539f3abcf06f68a56add6fc2fe8291269
MD5 74645fa67fb3a0559e81eb40a4c243f4
BLAKE2b-256 3b022513368810d654b5c31e8f99c32e8a6c573c511b9ff3fa5125aad123bf2a

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa54bf4889f4176374b32a8bb1882b9c8df19ec7e36428d780f9effe6f585a56
MD5 79c0e531bf30887c5ca062b3a9650439
BLAKE2b-256 ad2a065577686db93f266edc3bcec757db43a0a518be1fc2ad172ad751abb64c

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 15d902bf7041e31250fa4f8d17e496166eecc807337bb9eeb89fd07627ad6c82
MD5 68f40dd086a9aa824ed4d4db3c748898
BLAKE2b-256 790c10eacceb3f02b2df6543234776c87ffb550a26f67d2defa01d9431770316

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a5c2bf2f5217d4923332d72300e474a5420291f33aa6e1e1a1f584ed65a27cee
MD5 ef273b5da84a2d471de69fbf22acc550
BLAKE2b-256 0bb55c99bb1268b3ce9b80a841eb3edeb2d0ea383fa7c1e41a29b6a9f7d95a02

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: fastrand-1.7.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 12.4 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for fastrand-1.7.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 766ef0bc37ebba8d2f8bdcb5576feeb8bb6be96775205ccdf17521c0eb4f5740
MD5 8e7b8023cba650bb78eb938114d58996
BLAKE2b-256 3d049344459a209baca307d04d57b325fdc89b881a3998c62e46e3624c91ce73

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: fastrand-1.7.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 12.0 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for fastrand-1.7.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 15e11719bf20fca7eb563683974a74db9d35b120e2d42326a02eb14a5956def8
MD5 38ab4b311358a3b6b11d53b0df639790
BLAKE2b-256 083a15022c91d3d1a4b2a0fb129a1e7942ee1e4ab39c1fe1641163e0b31b4be9

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d80fa6d8f92af88bfc22f5530d68cd39984e39b4e485fe860fa79b340851ee44
MD5 8fec40fce74dda499fdb97853cd56549
BLAKE2b-256 87fe6a770a05f1621594da66dbb46d05aa277bf968a3a97db91f395bfe6b455f

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a298159989eb3f9a4c7f855415d558bc03ac5dd9e82f2d0a4d1f0211f194027c
MD5 4f4cae6ebb3c39fbf09e402ad74bd72f
BLAKE2b-256 601da6ec7eb57931bd01258cae26d12fb45dc7a6cdf90fb4293fa4dd3fff12a9

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74af569738e63cd17704ee2693e2f66b23df94c50adc4a7e91b811e72dc2cd2e
MD5 aee3c89db4e6dfb024ada28f5fda92f3
BLAKE2b-256 2e573b00130f823ca4af27992ffd035ec4bed64587c331ff55e3b34ce6b5570c

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 69a5f4d348aaabf07777e85e916b486832beddce71b484d91cd0224daa8e6ef2
MD5 9c63b830a9cc7464155965a64e24a07a
BLAKE2b-256 bd764894cee849ccf939232cd3d8d88f09316ff8a8ef1dabbfad90c45686723d

See more details on using hashes here.

File details

Details for the file fastrand-1.7.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastrand-1.7.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bd16c71cd0990c5612f8f7fba185b2e98a0a2f91db539b576d53abe22aa850e9
MD5 78ddff0f9623b86d4686618e6dca3d4b
BLAKE2b-256 fba1bab32389b16238ee0aa9ae37a7a7969f3eb0e49c1756ed14fa980e79d2ff

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page