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.1.tar.gz (7.7 kB view details)

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

fastrand-1.7.1-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.1-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.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (8.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

fastrand-1.7.1-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.1-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.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (8.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

fastrand-1.7.1-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.1-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.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (8.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

fastrand-1.7.1-cp311-cp311-win_amd64.whl (12.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

fastrand-1.7.1-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.1-cp311-cp311-musllinux_1_1_i686.whl (22.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

fastrand-1.7.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (9.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

fastrand-1.7.1-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.1-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.1-cp310-cp310-win_amd64.whl (12.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

fastrand-1.7.1-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.1-cp310-cp310-musllinux_1_1_i686.whl (21.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

fastrand-1.7.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (9.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

fastrand-1.7.1-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.1-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.1-cp39-cp39-win_amd64.whl (12.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

fastrand-1.7.1-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.1-cp39-cp39-musllinux_1_1_i686.whl (21.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

fastrand-1.7.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (9.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

fastrand-1.7.1-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.1-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.1-cp38-cp38-win_amd64.whl (12.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

fastrand-1.7.1-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.1-cp38-cp38-musllinux_1_1_i686.whl (21.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

fastrand-1.7.1-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.1-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.1-cp38-cp38-macosx_11_0_arm64.whl (9.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

fastrand-1.7.1-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.1-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.1-cp37-cp37m-win_amd64.whl (12.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

fastrand-1.7.1-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.1-cp37-cp37m-musllinux_1_1_i686.whl (22.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

fastrand-1.7.1-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.1-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.1-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.1-cp36-cp36m-win_amd64.whl (12.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

fastrand-1.7.1-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.1-cp36-cp36m-musllinux_1_1_i686.whl (21.7 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

fastrand-1.7.1-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.1-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.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for fastrand-1.7.1.tar.gz
Algorithm Hash digest
SHA256 8c0d90e9e56e8fd52e7e3b2e7137bb6c8d116334be83053832415e34e4cbc038
MD5 1816d060b0d82754bff6a6cf34b5fc95
BLAKE2b-256 7e8a10aaad1072ebec616abd0b99b1f032415ff4911d802431b01e7ea87797da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 31733d180833dffd7c85a1148236d50f90b8fe57a91690846857daa8c72a0c22
MD5 fd83d454be6034c265d696776e0af8ed
BLAKE2b-256 83adab309fec6781d768bb3d08dcb9d55bc376dc83ba96543c3df8bc6423dbcd

See more details on using hashes here.

File details

Details for the file fastrand-1.7.1-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.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57af186a10a033737e29e8ff36090a72f7407255a7c7f76a971590f00c783639
MD5 837322134b8da9da5ec1e9246d055912
BLAKE2b-256 db440429fa0af36a071943a6fa18a1193f76916ec4359e5d564f357cfe2d326c

See more details on using hashes here.

File details

Details for the file fastrand-1.7.1-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.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b477dddb3435c929380adcb1dd4c88cf65bd80503e1cc09e6e261c2c0afb0621
MD5 bfcab0c5fdc38a9426e493f50d23df67
BLAKE2b-256 5dba0a59961c85266b6fbaf218cd2e3492e292f344697e06277a87a41a950f1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 455b9f30bf8640cf1372c727b3d1facb93bd9aef2c9ef4ae2ca55d8c4f839931
MD5 f8299027221657646fc21477fca00f09
BLAKE2b-256 68891d610802f5dbbbcadea5635f9624274e8d01fa45ea7883176e5ec8cd2c4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a182fc8f7409ff4ceca83a1e8acd391f9444e04de9598217fe606f04d97a0eb5
MD5 6b8f2d1ca7d7ab6b2059e0311f8eccff
BLAKE2b-256 7a9da047670311d46a7cbdff62bf5a451c9ad5b48cdb064ecf17d8d2823e33bb

See more details on using hashes here.

File details

Details for the file fastrand-1.7.1-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.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4eb82b9af7c2ac2a73bb47a34bf6634e0b3ad34521e5f815f9f7b5d009cc5c9f
MD5 ac55f32efd9bbff0afc144c145e77b42
BLAKE2b-256 f74e57099b0cf49940212fed4e6b2323f1324568f55cb4a8c1e6b07717962c21

See more details on using hashes here.

File details

Details for the file fastrand-1.7.1-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.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 acbffcdea91241c89d27983e32cd9f270519bc9785e01f528f8c9268323a1fae
MD5 d2e9f78a96c1ca574cd8256404c2c4b2
BLAKE2b-256 67874bb702c6d1cf0c789e625aef9cf4b508d51545ecbbb97938525631f85a7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ae332de6d21e9e73d364ed2bf0a42f6633657fe285383ffe7e506e5a221d613c
MD5 e73677ba4a5f98af821fe90f860053bc
BLAKE2b-256 e6d106fbb542119f1d71ff9609490e607eef6f3bdaac678a678be2ee47f83d81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 34580a95270b7ecec2731d4227c591a4394ec4fa7c557386a7377b1ade6285a5
MD5 49f2a77d0a85c987b6eedd74b046a591
BLAKE2b-256 a3a2aac95705780d3aa502bc005a9d64a6ce14c900619583f5edd42cfa213637

See more details on using hashes here.

File details

Details for the file fastrand-1.7.1-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.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f75ed45c2887570193dfa568b7d1b61f1e6810c41f02d3ee404d9e83185e65a7
MD5 1ebdb76bfa1c097e20579cea1548b353
BLAKE2b-256 d2aaa804a9895f96bcee45e26f20adb3e1835fc1582b2a0d3cf208502898dfdc

See more details on using hashes here.

File details

Details for the file fastrand-1.7.1-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.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7797b686cc63d0304cf2fc97b9b2cca41aa83660455477d5c0e6596b61afcf03
MD5 30373f8f1aa414bef810b034e94ecca8
BLAKE2b-256 88efc39e5b54b9d25f2330d05b7e54992f444860d185b20cb43314b01d4a4668

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 811dc661a89fc10ac0e4e90f3a39d7fc2e6efb5a30c682ecada81fdd86d3d91f
MD5 7e2589ee961fab252166dd78bbd16694
BLAKE2b-256 1fec93c214e70f04fe143630ff087a1b64505ee5becd8239465661fc545192c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ce6b00fe03fe247f0de20b8be7667be012ce798054d28dbdcb4f2bd2de1f0376
MD5 4ed583893a5f550dc2ac8a0817a29bfa
BLAKE2b-256 103c7f4a7eb5a916f2661e0042c434dab6cefa3cc467ccd91afef25e69c576f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-1.7.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0e27c4a45e5c279025e1c42b2e2614833b914578d6b3188cf564145e8ab670b8
MD5 c61666f39d13db5de0014405ae0b5c75
BLAKE2b-256 b9fb88f586ac9773a2f1ffb4ece854893accfd79cdeedc1c70358611776281ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 942adb1e9708911a5e3e020e8e26ad2a33db77cf3da370cb01b7316e6212f9e5
MD5 78ae4250008b57e4249d7f06c64d28da
BLAKE2b-256 892f098481fb7b0b76ee8d9d6bb65314b7cd87003254721b9ed1c69306955b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d30de7ff55fc5ce4f390bc45288e6a088be6a13a462326cb28da4721ad5a8969
MD5 b8decc8996d578c295322d91fa7d203b
BLAKE2b-256 1fcca4a3d35663755bb9fada1c12cf62799dde88f8817c41f686251d6f0d80b0

See more details on using hashes here.

File details

Details for the file fastrand-1.7.1-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.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32a3eb12a7b91c3ce67432c369ac26b6be94657b9400efbe4396307aa0a4e072
MD5 67d5b4907b425a12fae24efa2306a48a
BLAKE2b-256 3d050e87abda75f71e04b8014e0a178e480d1dfa9fcf5241bf5990a2724826ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 df8d231c0f2351fdc57cd70ac061a556b7d875fa7de88a07c08e923dcabcf793
MD5 e8db5c29391bece7328b4ff4e914677a
BLAKE2b-256 3b1545fa4f28e07b6b15cae681c2ac20c11507ad453c618e735bd276058212d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff23fb4c89c8aaba5933712252187d87e8a7c8d7af94e2f8dc7ce0441bc4a02a
MD5 c2f4a562dc8aff63e25da1aebcac9ce9
BLAKE2b-256 03b27233fae7bc4d3fb6aebf508be23e5b316f201c3fa8c84a8bb6a10aeade0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f89ad35b1409516c49dfcc0208932337eeb559fd9c1677bbc50dc494b024081
MD5 fe3814020a29e7b603f34547e8617355
BLAKE2b-256 7c2a6becb0a4a2a004b76dbdab2ac59251bb8ff5fccae320589a4b2656211006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8b7317e2200b72e03adb090d540bfd0c7705e795f7ac1459528e98db74bbf4bd
MD5 0da103036a124972b9e05221e3adbfbc
BLAKE2b-256 3ac9fed7ce1ea13a5ee40aa7a38af580007f39d2b0b7d0f79062b55df0291f62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6793788c36af1d517f120850de3a037eb086e1b58ddbcc2ec6b2299d095f957f
MD5 10fd7da54f79fe75ef02cc28e1375549
BLAKE2b-256 46b52d6043b018b810c22842a3f6f45901348495d6b9691974516b461dfb755a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-1.7.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 582ae808ba8dd99441f4b8a881f35af425e44639559379d60e99653f5f032fb8
MD5 7243541e3aae4541ba5f43e7c2b09ffc
BLAKE2b-256 e24318620642c92bff6222e744472ebbe4971769bfb19b63259ab285f96f1464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ab11f93f69a8dd7eee5956b67299ae17bed35869e4fdcdf5edbd8d2a86811541
MD5 bbada41cf923af96be6057e109c35b03
BLAKE2b-256 daaa8ce082152aaf69c7b13069caff700a82e6d3a7ce3bee0281020d5978e1a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2dae1d49e612229bd715b4a7d5bb06ab69479b7e6de0a1ab94dfee6300ee2db4
MD5 8f411af431e92dfdbca5297fd9aa07bf
BLAKE2b-256 6f731349a88d36c60e9f751071aa123a3acc419bcaec0b54752a8097870655d5

See more details on using hashes here.

File details

Details for the file fastrand-1.7.1-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.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83e6916030798ca6f86741e98cadc970e2944b7dd50bb721a025b8133df3b360
MD5 adc7431cdabf83d019ba2143e24ab3ae
BLAKE2b-256 458a366b40ab0cdbaf36a26ecf587c55ee1dfded88525c238840f57ce5bba5fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4acc85f4c61db6d792383944f8e3e1c3b6d11adb28c74a43c0338ed4ec63b6fe
MD5 63502c8da64d414504729ac4111dcac6
BLAKE2b-256 09d4dcf85e9880ba5871b7b1dfac68e54e3f62aec54872e9aef484441b2130e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2bd17f13d50fc2fbc59164d5fb72eb98572321474564e3abf416d26ff3615f1
MD5 5cf13bc36a4376279ddef5667e7dc242
BLAKE2b-256 b18f047285b654ad714cb9fce7f8f5750d9432c5bb69e099b7e8d006dd5a6bb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 30ca89d76b73d73cb96e52591707a6dd101c53aec15df843d0ba336f7b633e55
MD5 899a60a24100c61a05a28a41a844ecce
BLAKE2b-256 3f25e08437ddfea80694ace6be043535d204fba6279461a4e8940b02f597e05d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 82839870a2bafe42d240555524dc7808b7a9fdc51af0e177d8334ad3f149c4a4
MD5 d5aef46666f8e5980dbc48f9b80adc86
BLAKE2b-256 24be1c7a67fb0954a90aba28a308a17b300c2a9c384260258b9a8088a3b15015

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-1.7.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2beaa851b7477983c335544f352604f398129e152bfba80b9acf09f1382feea0
MD5 852ff33b3ac860568aeb4a27f96c22d8
BLAKE2b-256 7ac68e6dc0e4b420968a4e72f996b9ea21d9b34be9d8595d9028986b869a9650

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-1.7.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ca3bd985387950e0bacd6dba9b3f7bbcf29951a31edba277444ae11356ca87f6
MD5 2fd3fd8fc8baeafdffdd1ba097fb8943
BLAKE2b-256 105ff1015474356ad58cfa53195f83201efd874a2ca1dae946159e823ef3bbc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d2202d7ed2ea31759a84481d93a6aec8517e4e97a38731c39ed80007373959a4
MD5 bd631169cceaa0758ce880d69e385867
BLAKE2b-256 c12ce1ca8317e6d65e0de45e2c1d9221d7ee793b13d0c415906763db4857e515

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c124986849fcd6e377a4f5371acdbe5f2287ac08d19534c65588a56919067a00
MD5 045a21a369a3f4c144b71090cee2ac84
BLAKE2b-256 05cc3df0cf4605c1a52368ec82bd6be4fc4de143eaa123c809f2b5870da69a93

See more details on using hashes here.

File details

Details for the file fastrand-1.7.1-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.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38b9e0c66e4f6797e48d6b7abf2e96c442f7917365a9d3b3cfeec8931ba1c154
MD5 551a0271edae2951961f18f1e043cc66
BLAKE2b-256 c9841d0de8ab65a04ab89005f27d7b3c0f5ac0dd247fc173dd519587ed993adf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af9f14c7d091dccec672ed3ae6cb14ba22e3070f8bc7b235e617ff01d636092a
MD5 b585a034eb9c2463daf1a196104ef4d4
BLAKE2b-256 3066d180a3cc45713ce1fa43d03e29c858fe3adfed45dd909e801295138f2a78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 833522a22d3902ac10f0f571e503cc58b82602723b334174e64151fc7ad7e306
MD5 ed4b8f0fd09bdc3d60764713633bebef
BLAKE2b-256 aadc098459d92c59bd93eb0484f000e23e9622705944ea609a22f8d36ac145ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0fee3b3356e06e3d1695467c11be3bc58f749785a1d0b7aab6f609ebdc2c00b7
MD5 b7889f8c2e00eedbb8f3da394551fc30
BLAKE2b-256 59c49abf2802ae1ef340c7f8d691e2af5435f2514b183c5b315a46e13d310ff1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d5146b09c26de188adeecba0137a34daa648d05e501494181e30362f46c3eb29
MD5 a7bff8ff3b767d52cf7ea0cbc0d5ef7e
BLAKE2b-256 f45a06fd9e16b30b07525523004aa90e957ac50724e3b47b134ea02fd5afa015

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-1.7.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2ba6b714f5f995d658be7a533c663b6242043791e1f9e75c6cd146cc6d3e9a12
MD5 99aec49d7bc4eeefe97e68ac037ca5d2
BLAKE2b-256 fe33db61848bb40fe469af8f272cf441bee9649b46df7b9c4101b78612960396

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-1.7.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 845b45cac33ecd9e3a664d5d7ee78d2031df1582137149e17bfaafeac65ecbe4
MD5 bd3da51f7ef069d75cbf870a45d67ae3
BLAKE2b-256 63081b23087918fc92589365d3bcd27114c5332e6462eefd87c7776bb55ee9fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 11ad4925fd66b1c33f2344575e022a92b3ebbe694eb8f1420d863c4b675031db
MD5 93f2ba11a4a4880d2be03e68ef3faccf
BLAKE2b-256 1a9e199ba41bc41528f32f982a5ab7562f5b3bbebc89f5f45f72466715c55b91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 78990033e9cb543d8ed9c8b06d185cdad996cc92a658596fca28bdfcfbd6fe72
MD5 314868e0b6d20dfc95ce74b8a1436b2f
BLAKE2b-256 20e8837f2cbcef76376b575ac35778e8b13b65fcfd6d364321b53c0f14d9e23b

See more details on using hashes here.

File details

Details for the file fastrand-1.7.1-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.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7c41ab5bcd36379a1a2719c48f11205e445d5faa39d40e867ee4319d4ef3190
MD5 1f3bc73084717cb29553ab30a55e0b85
BLAKE2b-256 2c1ebe8a44b68ecc039afd2c02a232de8f6904d0b1524ff23183e85599da5d14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8feac58104583d47b8e1d896c53e0bbaa4bc3c74f517452e3d24c3814016a165
MD5 3fc04bd0038a405db8073240528c50dc
BLAKE2b-256 0376c03fc0265932aa786ffb10ea9915bb273d71598bc225ad78c7079f039b75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d91359a7d5e2f9452a6f23ee34fe0938d3a17e37e2166001ec07410f194b02c3
MD5 5920b7e7ba2bbd108991cae6289b66a7
BLAKE2b-256 bdd208b8fc5daa1547466b4539f9a3be0bb6ebd40b320b7e1c8f431db7c17de5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c58442d6321da0db206accca65aed7b056974521689216992226a9575dcea9d
MD5 b96afb18933ae454ed7932cdf0d2d759
BLAKE2b-256 4b1c020bfe3b9384009145cdda249f8d03b44fd6ef06be570d4db2efbd8459bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e1c01114abbd7643c68751b81411b2bb5361a25df5fbd7a345a6f2aa74252a53
MD5 6e6067a58ec5086617bbeaf229694e86
BLAKE2b-256 58b9ad7dac48b04af48c31189ecb71f08b11919a87138aa8ab24b322895b4089

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-1.7.1-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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a77c16891df1d89cd2b41ceb1f75cd7a12ede4fc14da049b5d45eefab02f501c
MD5 33b5f44174ed20abe03e2701720ca36c
BLAKE2b-256 a654b0ddd1acc6f6b1fb6f5d02718001652f4a3fe40477c7939fbbbbde109cdc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-1.7.1-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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fe6219dc258c223fc3168c0b1686ae3eb3645ca0fae3aec299ba7f2be0519bee
MD5 edbcffe5c1fed6da604dddcf2ebbf525
BLAKE2b-256 b8093acb6622df1bccd352e9aa4e6fcd87da9c8fcefc79dc85de70951bb15722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a1c0414627043def2fbf17b6fe26dd6a08702666b14d0af4a7deb6b63dd2c223
MD5 d0119f2c91eacf25182d5c39bf53fc41
BLAKE2b-256 6605dfcb6c085ac60eb7827e8bf1fea7af55b7a6c73e8066ccf46431b002e4a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2b1d29c6a54673a7d78f8f31e00ecc7aa17ee58e6de103e535d9aa9c12483c4f
MD5 cd33aab3147aa77c6d926346177e3e1e
BLAKE2b-256 1b79d5564227de6bc86589e711e0443fe4008ce7674f7aaac602ed63eb0bd10c

See more details on using hashes here.

File details

Details for the file fastrand-1.7.1-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.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48e385d442dc663d7e95fc79d708dfa6dbbfb28b59aef4b7765968ba47d11f66
MD5 77d6799c75f2d6b08b3339c0a0ef6390
BLAKE2b-256 002752f0ec1970212d30fa795b3ea49b0df730bebe0f80b7e0f0f76f9632dd75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bc731567529bab8be66483f5639231ea1b4b71afefbc2203ddc6f5683aafc40f
MD5 2024e74a27b819f554d96fdeccf7142d
BLAKE2b-256 0bf4c9d843d6901b35a0fb52786834a37e6e66ac55ddc536a43aa984427d10c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b3f7c49b1d01c7e718c91b0d89f28356b057ea7f12b706d9724cfb84aa9f1d76
MD5 9158aee4dd3393d9693eb99a07e4dd5c
BLAKE2b-256 100836c0b9bdce067b3d44e8c69d56b3f07bf50e2f8d7ddf97aad95484a44f09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-1.7.1-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.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d24dd36bf590cdb4903c11cc2769e016449ffe93e5a872d6d82c0cc6778d4342
MD5 b728307db7e038bf88ca1fac9b9e9356
BLAKE2b-256 32ae2d93731f955aed23e941847bae4b2991382fe2c3bd71f06130efea9392b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-1.7.1-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.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2010ec135c492c6d80212c31fa78d85c51d3457757c5f0276507f95452ccd6e8
MD5 9c5598e0a5721eda4672b945721b7a82
BLAKE2b-256 24e7034dcc27402d5552ea9494c3c25f72ab52a66b33c9aeb1f20a38ea673d38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 203ba45ebe4058aabc6c5dc20dc46a8d2039b5dea5d6e4bac8901a226cf260d0
MD5 39c8980c47d93bd750f5cc629742852c
BLAKE2b-256 3a8d94609d8540532de62025abb57c7b6794eabaa0836858e7821f0acd0fbc99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5e1aaafa2bf208c71e14945578fe285920cf9579f589bcb50f95f0b5424d55fc
MD5 f9703da45f02c9c1ef1e44b06228aaf6
BLAKE2b-256 1f719487eb86dd3d55b3708a1cf884cdbe12ba04796d43c3213840e92075a258

See more details on using hashes here.

File details

Details for the file fastrand-1.7.1-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.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f8f2af470630584153cfb90d86548c11d0e3a31e27c3b2259d9248e2def909a
MD5 646d88ee7aedd202d6d8de4b696b4c89
BLAKE2b-256 005ae15dbf5a032ec3cd02e7a352c2aa0e9491c4db0899c81ae2912b23bc3502

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fe17dc3dd94805db2248227bf7ac348e0cb42d4146bab10a880cedbdf62f979b
MD5 b569c8a654c4d4456f55a4f7a4007066
BLAKE2b-256 d32075edfa84a96d6699be3aab63220bd85b591f01e6eba5f37f4becb5b26fd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-1.7.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb97928a37955644d5ed645e4477be81ebba66b278d5a2ac8425c99cf97bddbb
MD5 be08b3c0e8360aa74cd53e15366d3105
BLAKE2b-256 e44bdf97c2df12f576f667a21c806fcf252fe35e5418906164c79acf0400b0c6

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