Skip to main content

Fast random number generation in Python

Project description

fastrand

Fast random number generation in an interval in Python using PCG: Up to 10x faster than random.randint.

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 an integer in [100,1000]")
fastrand.pcg32randint(100,1000) # requires Python 3.7 or better
print("Generate a random 32-bit integer.")
fastrand.pcg32()

if fastrand.SIXTYFOUR:
    print("generate an integer in [0,1001)")
    fastrand.xorshift128plusbounded(1001) 
    print("generate an integer in [100,1000]")
    fastrand.xorshift128plusrandint(100,1000) # requires Python 3.7 or better
    print("Generate a random 64-bit integer.")
    fastrand.xorshift128plus()

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


python3 -m timeit -s 'import fastrand' 'fastrand.pcg32bounded(1001)'
10000000 loops, best of 5: 23.6 nsec per loop

python3 -m timeit -s 'import fastrand' 'fastrand.pcg32randint(100,1000)'
10000000 loops, best of 5: 24.6 nsec per loop

python3 -m timeit -s 'import random' 'random.randint(0,1000)'
1000000 loops, best of 5: 216 nsec per loop

python3 -m timeit -s 'import numpy' 'numpy.random.randint(0, 1000)'
500000 loops, best of 5: 955 nsec per loop

The pcg32 is a 32-bit generator so it generates values in the interval from 0 to 2**32-1.

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).
  • You may also initialize xorshift128+ with xorshift128plus_seed1 and xorshift128plus_seed2.

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

Uploaded Source

Built Distributions

fastrand-2.0.0-pp39-pypy39_pp73-win_amd64.whl (12.9 kB view details)

Uploaded PyPy Windows x86-64

fastrand-2.0.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.0 kB view details)

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

fastrand-2.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (11.6 kB view details)

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

fastrand-2.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (9.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

fastrand-2.0.0-pp38-pypy38_pp73-win_amd64.whl (12.9 kB view details)

Uploaded PyPy Windows x86-64

fastrand-2.0.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.0 kB view details)

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

fastrand-2.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (11.6 kB view details)

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

fastrand-2.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (9.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

fastrand-2.0.0-pp37-pypy37_pp73-win_amd64.whl (12.9 kB view details)

Uploaded PyPy Windows x86-64

fastrand-2.0.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.1 kB view details)

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

fastrand-2.0.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (11.6 kB view details)

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

fastrand-2.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (9.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

fastrand-2.0.0-cp311-cp311-win_amd64.whl (12.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

fastrand-2.0.0-cp311-cp311-win32.whl (12.5 kB view details)

Uploaded CPython 3.11 Windows x86

fastrand-2.0.0-cp311-cp311-musllinux_1_1_x86_64.whl (23.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

fastrand-2.0.0-cp311-cp311-musllinux_1_1_i686.whl (24.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

fastrand-2.0.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.6 kB view details)

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

fastrand-2.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (19.1 kB view details)

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

fastrand-2.0.0-cp311-cp311-macosx_11_0_arm64.whl (9.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

fastrand-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl (9.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

fastrand-2.0.0-cp311-cp311-macosx_10_9_universal2.whl (11.9 kB view details)

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

fastrand-2.0.0-cp310-cp310-win_amd64.whl (12.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

fastrand-2.0.0-cp310-cp310-win32.whl (12.5 kB view details)

Uploaded CPython 3.10 Windows x86

fastrand-2.0.0-cp310-cp310-musllinux_1_1_x86_64.whl (23.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

fastrand-2.0.0-cp310-cp310-musllinux_1_1_i686.whl (23.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

fastrand-2.0.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.6 kB view details)

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

fastrand-2.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (19.1 kB view details)

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

fastrand-2.0.0-cp310-cp310-macosx_11_0_arm64.whl (9.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

fastrand-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl (9.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

fastrand-2.0.0-cp310-cp310-macosx_10_9_universal2.whl (11.9 kB view details)

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

fastrand-2.0.0-cp39-cp39-win_amd64.whl (12.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

fastrand-2.0.0-cp39-cp39-win32.whl (12.5 kB view details)

Uploaded CPython 3.9 Windows x86

fastrand-2.0.0-cp39-cp39-musllinux_1_1_x86_64.whl (22.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

fastrand-2.0.0-cp39-cp39-musllinux_1_1_i686.whl (23.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

fastrand-2.0.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.3 kB view details)

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

fastrand-2.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (18.8 kB view details)

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

fastrand-2.0.0-cp39-cp39-macosx_11_0_arm64.whl (9.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

fastrand-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl (9.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

fastrand-2.0.0-cp39-cp39-macosx_10_9_universal2.whl (11.9 kB view details)

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

fastrand-2.0.0-cp38-cp38-win_amd64.whl (12.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastrand-2.0.0-cp38-cp38-win32.whl (12.5 kB view details)

Uploaded CPython 3.8 Windows x86

fastrand-2.0.0-cp38-cp38-musllinux_1_1_x86_64.whl (23.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

fastrand-2.0.0-cp38-cp38-musllinux_1_1_i686.whl (23.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

fastrand-2.0.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.9 kB view details)

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

fastrand-2.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (19.4 kB view details)

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

fastrand-2.0.0-cp38-cp38-macosx_11_0_arm64.whl (9.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

fastrand-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl (9.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

fastrand-2.0.0-cp38-cp38-macosx_10_9_universal2.whl (11.9 kB view details)

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

fastrand-2.0.0-cp37-cp37m-win_amd64.whl (12.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

fastrand-2.0.0-cp37-cp37m-win32.whl (12.5 kB view details)

Uploaded CPython 3.7m Windows x86

fastrand-2.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl (23.9 kB view details)

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

fastrand-2.0.0-cp37-cp37m-musllinux_1_1_i686.whl (24.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

fastrand-2.0.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.7 kB view details)

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

fastrand-2.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (19.1 kB view details)

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

fastrand-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl (9.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

fastrand-2.0.0-cp36-cp36m-win_amd64.whl (13.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

fastrand-2.0.0-cp36-cp36m-win32.whl (12.6 kB view details)

Uploaded CPython 3.6m Windows x86

fastrand-2.0.0-cp36-cp36m-musllinux_1_1_x86_64.whl (22.0 kB view details)

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

fastrand-2.0.0-cp36-cp36m-musllinux_1_1_i686.whl (22.3 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

fastrand-2.0.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.7 kB view details)

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

fastrand-2.0.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (17.9 kB view details)

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

fastrand-2.0.0-cp36-cp36m-macosx_10_9_x86_64.whl (9.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: fastrand-2.0.0.tar.gz
  • Upload date:
  • Size: 8.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for fastrand-2.0.0.tar.gz
Algorithm Hash digest
SHA256 94851cedfc44ce4b32ae9e1dd260d1f9be99ce19b5add68fe8cee74ad1b9ee23
MD5 f73ed88ddf7441abee312f41108135f6
BLAKE2b-256 c518cc3db2cd8fb082206fb81072ca8765d33258638ae13890e7efb9ca39c4d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 39fbcf9f19dcc37ba8dd7e4edf9dac0756fb921c1c9783bb2c98a3a90e4e57ba
MD5 9b58b32657cea4eee56227013504ab84
BLAKE2b-256 e90b9a59ddacb718b297c4c823743a2ccb5764a629e5cc438cb1ed8dc9d8995a

See more details on using hashes here.

File details

Details for the file fastrand-2.0.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-2.0.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 ceb0d2b058e319b6dd9848d6cb1853e823a693ca29a800cb7841208495d1c8b3
MD5 76ecb78ba568572dbba27042d8851ed4
BLAKE2b-256 64567ecfdb0db2f4e554bb48ba3a323baca61771caa767d79b23ff159b04392a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 70b05725f54f4b08cb8e98a63d39e2ab3ca101870fa07d29a6e78fc170530e18
MD5 4fe3697cca98523fa790dd8b2ea5398f
BLAKE2b-256 9ddd9e48cbdf79241bee2e5da0078af85e3df114188e7d5c55102d7597ffb233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 69ddd9f2441c2c800c6e22c57621d23ade0fac4de602be7b7e395b21b1a7780b
MD5 3d7128b918069433b811adfa8b3ae196
BLAKE2b-256 243b3d600ffa1a7e4ea9e3dbb8f21860bc831927c8dddccb9092b62b91b2b214

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0dc542a1d47b672465b916abe88a82fdc5a282ae715602db59a7fa83eace49e9
MD5 1c2c2f4d39b7ba9abd9fb552fb259520
BLAKE2b-256 5ad2bbb91ffabca6a053f90f3434d0b0f4a8a85e034af7e015246afed206416c

See more details on using hashes here.

File details

Details for the file fastrand-2.0.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-2.0.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 c806a28fde25b44d6ec98fced59a300a2079bc4799553cf3d9a7a08dcf78d099
MD5 0e526d6c643acb784c473a893b3c92e8
BLAKE2b-256 bd643f4c4b3606584d82335bfc179c4bea588f12e9cd42914d25bdc8b4479282

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9d27f541307b9efcaf058563de590987e4d725841fc1273cfff575556130656
MD5 9db582ce03ffa8d790b9a5b3693175b8
BLAKE2b-256 027e1a8defc32ca49a99a28e1766f805f98b752da48db3336f16fa2ce3732e86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0924d0d0df1ac4034bc486fe41dce9ef3c741dfdc8fb7a7009a82f51b1536543
MD5 d5fad5e06195c86d9020e79b6f9bd088
BLAKE2b-256 e189eb55569257551ee89c0d00c0849f06d31217d6f25d0d9ce200dae9b9451e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 55cb27801537ee61150a24052ea34eeeb817c56a78d6b35604fd8fa6a104d31b
MD5 383f564d017844ff37730dd8084604cc
BLAKE2b-256 56221db1df0e1e8f3e2c1135b3d9aecc3d646680d6c4c66a280324fc4ec1966b

See more details on using hashes here.

File details

Details for the file fastrand-2.0.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-2.0.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 dce728bf97db899901714ffe107469f544390f3050cab9a078d272393746de15
MD5 b023e5fbbe71d11b481108f7dc31aa2d
BLAKE2b-256 2887eaf633628876f6fd83fd7da1a9cdf0fa72ef467cfb0fe82dd2884c91c289

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4cae34b8ce1194cd6604be0926a30ba06de976100b5a529b1398831ebec6d50f
MD5 c7590802a644a9ac9807516fa85603f3
BLAKE2b-256 b4cfe7e228bfaf43158f28b981db329d6d0d09dc7ec052209db236d9b98add7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f2fced9d319361d87ea7b22c39a2736a82ecc92f71011d5ff790577334d4a6f4
MD5 8f38b0e80d4c6315026c79fe455eb8af
BLAKE2b-256 65ea95685d32772ee3d1becd4ab546f3c0e36615d4655b942ae73424baf08d15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-2.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for fastrand-2.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0ace6043870860d2b438192c2f85058b57037ce5f04c3ca71153e8083c91d41d
MD5 94ec35c00288676f9957ddabfd74b290
BLAKE2b-256 035ff565d0045a4a68a97253d72db07d4e5276ab0c7fd695bb7425a07d49d8b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-2.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 12.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for fastrand-2.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8e7c97d7bbca7232b3d52795c6c898716147f54e394c33ae2ae5d1eceaa16f56
MD5 ceefed9eb65c50dd656c050bccb9c67b
BLAKE2b-256 0260539aa4cb594ca44d2fdd9ff0cc88fb9411b914a5062870b90510eada7df9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7e095fc7dd83664f89531382f47651567a9263f93d8ebcc5e6b34d7a5b2b4dcd
MD5 d3ec3ee67057e9f379810b0a4d06fb75
BLAKE2b-256 4d11bb00b6629e9cacb3b7176cee55a70ae17d373dc9fb01a869b2dc645a49e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3622b9e1286e82a83bb102cd018ac94b356b3c0277a679f2bcc6ad8092a44edb
MD5 2f2b0aae85e3fe27fb694eb7a6d6c915
BLAKE2b-256 2242058799908770170e577926e46bc64d41869ee2c70715ef79475c499c6af6

See more details on using hashes here.

File details

Details for the file fastrand-2.0.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-2.0.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 baf5e3667a3464ec13d901955cdadaf55f669604f66fad695e5fc384527c1f64
MD5 dc8d4aa39b3661b21d1e8a416752a10a
BLAKE2b-256 f4458e2b181c73a002574d83901574896f333f99d9f009c5281e7d4a66b83c10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4e740b21446fb0a96d28dd7031bc9c5056da516547257490dcbbf159e6d7f745
MD5 d59b1a4e19f2821cd72fa645a42c5d42
BLAKE2b-256 07b8aff1e93472b658740d60e55110f1d3e6225ab0642ff28bab8f5fdd7aabfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cb7d884a50cf21f6f8227f5abd35b7822fe3da2d6f9a439fabb84edb3a1b672
MD5 0277562da885c0827249e2dd5ad37d4a
BLAKE2b-256 d72910a7e0c95ea81f1e82ff555d41681ca6b48f60c63afc54248e8f59c27c0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7da459d92c3a1ac62dc1a3440f3b6406e45c68283aaae2332a9e84f7d60855d4
MD5 afe577d45ca7601fbce3ab67ec9e69d1
BLAKE2b-256 3f7e6bb42a4d9f1c780a201447eb5c64cfb9574000aad4d905a90533711c564d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7cec8b8b74bbaacbec5081c1a506d509dc9260038f156ea98382df6b635214eb
MD5 9ae0fabaf1d7d02d6cb7d38fa78a0483
BLAKE2b-256 ab925df2ad170ab8381e290044bd94b78858a58474bda33eaf596bf402c1f2cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-2.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for fastrand-2.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f167b726f387436115fd482661a938b1527dc70d3ba860f6d3ad6659e94b2f76
MD5 d95579d99079adc5ab7ce17d70aa8787
BLAKE2b-256 895657ef9a3e46ea781c8c98df0fe877cbb4c098a766005813b70d0caa06fef1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-2.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 12.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for fastrand-2.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 54a61c6c8d417ed7fd5fa1d862fcdb98265ad286f6ae17a0dc5ec36948fa9e5e
MD5 f864f0b44fb9c244e1ddd0b3ee471349
BLAKE2b-256 e22d7a118070bf077ed9bbddb69603a7c56086a45590c69d0aacdfab1ac959cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0e9d3028249604b50c708ddf618dc712b251bb9c4385f34c762face6bb6a134b
MD5 1556f08a6f5da49f56422487067e14da
BLAKE2b-256 60c7ffec388e9ee256294f468c07eae4f8623de7d8047943920fd653fc910c8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 aca51cc687323c0947c54c1639dc2ff97140fb1616c6e841f5bc70f04fb79e88
MD5 2307b24ed453797aae0adab6e8508cf0
BLAKE2b-256 c6b11ce6488d48643e55f4274f7bea0774e8080fb641d37d45e5c238b8e74749

See more details on using hashes here.

File details

Details for the file fastrand-2.0.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-2.0.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2936b05dadbe08a2c425ee4c6bb6a614374d4de185ba72f18df54c212f4d5241
MD5 5b659ddcb51be8df525e83f33ff5a0ed
BLAKE2b-256 bd1586b367b7a3e7c3d7fb8671f033f657a14fa77e5e8f43968b1993d171af9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 adce45b71fa019cf2427842e1bd8de7418992eb5524b14c922a5dc26b4151394
MD5 846c396e6a97f74f349d65a4ef975be7
BLAKE2b-256 6616cf1cc381f30df73e5ea017a135d706cc14f6c64ee1e3dc49f69427461770

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f766551e6111481bd86c0b4327b8b1086cb13eff642f45d917b917fbbebb5f62
MD5 0e4061ccf4f40abb034a2f165726feee
BLAKE2b-256 13f1cf7cb0f7f123f3f313bac940699905a331907a28f1a202c116e4c24a3b90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e3a97972f104307a4171f90e58b1e7398df980ce81ff5a1560dff753d39807dc
MD5 0aa402f6e9e9f1751ed9d57417bb77a3
BLAKE2b-256 faf5f560e5862fe55a96fe3e0f3aac0263531c19cad16ad146c8d09eb8efb1d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fa7458bea5180a19a14a219241d38fbe5e3f17149a3047ff43ffe1f9457fd992
MD5 9431b1a10a53b10d4c8709cb26edc89f
BLAKE2b-256 4af41e58f0abbf274460e7f998c57c5d5bd2fc4e2432f64766364b8e3079a97e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-2.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 12.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for fastrand-2.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e2ee2271bda76f10b2796c50c95ed3a48348fbac1ed37248566db5ea5e5ecf92
MD5 64be4627be3698ff55e04873d6934406
BLAKE2b-256 7b46715c45063f569fca4d8606d63c86656e010d66e24d4981cdb6bb7995762c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-2.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 12.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for fastrand-2.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f6fb9ae2d0a8662dc9da937a8211e2f3effa380e42d6e3b59cbdd34258759b9d
MD5 bed9946d9250a7b685d961fd9551bcb9
BLAKE2b-256 82c92cb353a37006edbeaa2652eff605aaa08cba4f1dbbc2f19c98ca8de86017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a8384aad267209c7684460f3ef2b2be37813865e12b1c3a407b9ca75ab758fc3
MD5 991ec81ad98e5e9f5299a359c5c42544
BLAKE2b-256 79ec5ebf3c45327058e117172b0ddb05e0aa7f6cf196687c8841f338ced298a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 373e4a85dae4809d92cef6df75654afed583b06bbb50aa301962a156dc7cabfe
MD5 e49be9d06f99bf5536c8e91151e30b7f
BLAKE2b-256 fc77874c3a78dd456243ba608bf0dd1cbec00c78a2482fd34dbc0868cea70330

See more details on using hashes here.

File details

Details for the file fastrand-2.0.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-2.0.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 968aea360a65e081de39a902521e9330344b1475ff428d96423bb8a55f062ae4
MD5 3786b5288e82ed8e5a8d56f309853b90
BLAKE2b-256 1a35c9fab05251a6f88dca5e00d6539203d78d65cbe773f4ea76362f75c9bf5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fe69b6091fe3e7d83704efaf343363f3b4d207469b023c63a51994424310376e
MD5 71db7bf5d86c684b8cb9afea595bcc5d
BLAKE2b-256 74a01cb0e54ea5034c81e26831dc2790ddd21e6a526edadb5dadc0c2c4671c30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f234a3453124228666c48a4cb83758eae33f6996ca67616290f78bba33679f2f
MD5 7b3f1a0d73e1b5d94fe981be3fd90157
BLAKE2b-256 0fd6fb363da860a2d07edc33682ff433f047cce8eabe6515cb4f5cc72ca3fdb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c16af356fa5af3d23de00fe4f80c1870e83a7be07d3f800f7f5b75d3ed07359
MD5 322132d6db62901db7848b15e7a9d045
BLAKE2b-256 9c3043fca100cb45bc7b2b0b00935ad1fb7787eef5ee157d79993dbe657c7034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 18fa982c7234ced01ec3856afed806ca830278429ee2258ffa3143417e6fbb00
MD5 066579364c771a16c74d587d9a19dc28
BLAKE2b-256 7e95ea4c29484ead540620172a86e21fd9f7629f555503e2d30d9093229257cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-2.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for fastrand-2.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6febb0f951eb9c75522068ffc079308969d6c08ee1cf72416a2ffafdd14af864
MD5 b88e0792763f5af406c5faf01a758193
BLAKE2b-256 48185fa9486c8c193ce219d745b8b2e3cae0668b4201e1e304ac666b4977db51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-2.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 12.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for fastrand-2.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 138cf7a0586af0914ac978436da7a6af88733eebcbaa211bbbdf28d114d85bd0
MD5 5fb203b37243446fe43d832f2ed173e7
BLAKE2b-256 9f773b55dbeaf39a7220ba80cb75bf4dd8b591b96a2df69d2c90e5ac7e7d4bbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fd53e16614d887cc5f9210b1ffdf61bbc0e430711e258068be11663a227a64bf
MD5 e7ad5192b2a387ec3d234f63b7a85dff
BLAKE2b-256 be7f423641a3b87a4b635657eb48aafa37cd4eebda6562d5310ca9fde4958304

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2c6cd223d93ce2bde01c56c1e6a624bb3dcd18642a651e0922f02cdf2d4e7063
MD5 634eaf73bf73a54d886b78c2561951fd
BLAKE2b-256 24cb023fa8ffc650ac89c719ea6cdbdb9f539749d23750f82201258416856328

See more details on using hashes here.

File details

Details for the file fastrand-2.0.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-2.0.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68bdf5531b3f69c5891902377bc506885ff1c89e077570735eff556392c040fb
MD5 003ad16d2ebd9f235120e6f9cc3ac6cc
BLAKE2b-256 25e4603bb2bd3802020ae90eccf00d8f370fa4b50024b90a5ea0a5e05f591975

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6647c0ae29a1672ad327d48803d0dc1174b15fb4746232111ca3d390551521dd
MD5 4914814cdb5f3322f3d4eb050efdf18f
BLAKE2b-256 a8cdb87c142926ac20084f29d1b4b68595be00a39fa7cf5e01e43f6764b500b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 427ce344a4a402714a2fba844cf6bf25d2344d8dfbdad7c7570e3420d293b525
MD5 8bc26b93e4bc3ac3f49d33622938321a
BLAKE2b-256 c0041d924c354a1126c1e0f85a432a40a0daa9610933e449bceaf93e43747703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5addb577e08b571414a6af103609404dd667044d4fdd466c36e5293e7b14fcca
MD5 900c6eb14c7d441798f811fedf6c5025
BLAKE2b-256 4212a3a27b3ea31421f39448d8c7037821255860df94983db7796a3e1a53caeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ca5994ccd2d3c8e0d32a2c3fca58121da40640d4a15a75cbabcb7de5bcfc9559
MD5 1c0da70c4bdd1b2838b94ea865ada8c1
BLAKE2b-256 20c5f6416a02487f9650e7bb8b3a494ca6ac02a920ac499f63c84c87497db7fd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fastrand-2.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 60de7021f6d91ffdf45ec2b98767ddf32242e76eb3cfecc2e793e720b862d6c1
MD5 c7fc72a7270323d1287a45166a608aea
BLAKE2b-256 0ba19b836a14958469619c3bb326e67a3bddd93b0880cb133fd41cd451fe3c3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-2.0.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 12.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for fastrand-2.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3bbdc2a330c8f0d3ce4da7abce245324dfd84d689140fb4660be4d1e7163b9b9
MD5 3f426767734fa8efe9aa30d6d4c4dcef
BLAKE2b-256 aab1020a56ae8f296ef3ec545f7b4276072173206e83fa9fcd5009fb5479e329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dff9e8a477af7a3eabc2c0581835fb4b06b890f2535b63f8148bad010ece7a6c
MD5 191c3758daf3603867174caf5a53fb08
BLAKE2b-256 84c76ba7529461465d88ef208a0aa3eb54da8fa030e7b1433c7cb64a6d87d0ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b958f50db015c5865086b0e16db228c5be3043dab4523fe1f010d8aa01e8592c
MD5 1dcda0d01d5df78d83bce216e4a1f7cb
BLAKE2b-256 80885fd67da6dc6854ff681be925aa3dfb661168b46c65f7ced85f1898694116

See more details on using hashes here.

File details

Details for the file fastrand-2.0.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-2.0.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90bd950b8779bf7b59041e394485a1bcf0c88a1fd5ee4deb8ba69331dff5822a
MD5 c2699fb6092d16fd0d07b25e2dd037da
BLAKE2b-256 c88386f41164269864aa9e78df0463754177a89836f2bc6bae2f6dba71976cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a43ff4d2fb2cb2832be7815622a375a396cd185572b5792b9310e405d26ef38
MD5 d9285ac76cb0bd226a2db90cfc845e7b
BLAKE2b-256 f40183c900e79fc648e26f667fee24d611965e7047f3f566c1cf25cdee292861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62e5b4b14e775a72b6d99675912a0969226c0f3ce34003ce4c7073f6f88bccac
MD5 57007e71c65d44bba36f41547d6a7958
BLAKE2b-256 2a6d2a60a533d97710f89cbb8dbfa5c569a06c3dde463ef6ff0149cb6313c74d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fastrand-2.0.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3d05cc38ec2d56c426918b656b7680dea269fc36514276f17dcca3e35f56f875
MD5 c91a9579d5cceb6f3083c8913a38f24b
BLAKE2b-256 f2944ab54ee3a2bf6b0f7673a71ead64b01cd834a9ffa000ef81113c8106d467

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-2.0.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 12.6 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for fastrand-2.0.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7956e35759d09bda478a43e59e2c78d6bb98a06c60e93c781550a9f9864e6b1a
MD5 bc590a2481dfd201b18abaffba8c64cd
BLAKE2b-256 ecf9bca04cf23644b8af88e1fb10098e5e1109803c84101d5eb1f6603311133b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f0ae456317272e376d1099dd845f84abcacec0e479f9813290380599dc344c8d
MD5 fef32a43853f85a333aedcf6cd552d4f
BLAKE2b-256 ed4ae6fbd172a05fdc9eae9f95bbb00ecbb135b3d09ec3e3d4a06ad4555fc69d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 250d43d4c5d3d9a81b80eaf094a6bef3d6f929f875964702da5936c922e54fd1
MD5 2e8d059dce8400ef21471679de4c71f7
BLAKE2b-256 83896861cb304714bbba497c1f8f41923ba63ff4bb832e544ef433f458620d67

See more details on using hashes here.

File details

Details for the file fastrand-2.0.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-2.0.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b70600e62c849f11917e925749da0bd2eefad651b86ca315b54f44712a2011a
MD5 f5e1710382548761c3f1d166658b4b64
BLAKE2b-256 1a8f65bc028cf247195ff93c25040138cbaf854032a5d91523c674ea4ac21108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce07614fa3c391853cec18b97631aa00e70dbd18e7cd6dfd15cf1c070a6d9745
MD5 e4c88e9b6db5c6525e540c74ed26f27e
BLAKE2b-256 4e20768792da556cff3396ac4cf9a369645a12b54ae9bd5eaaa05cbf440826cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-2.0.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dab469f64835d355f3cc00eb3840aab7970c47c843f65c2710dd2a666e02bc38
MD5 6f957deeb87c7f653920f13adc447185
BLAKE2b-256 94775805a27f9a7df560285ad77e4bb4712faf4bf98d6137810ecc9a52bff599

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