Skip to main content

Fast random number generation in Python

Project description

fastrand

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

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

Usage...

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()
print("Generate a number in [0,1).")
fastrand.pcg32_uniform()

if fastrand.SIXTYFOUR: # support for xorshift128+ is limited to some 64-bit platforms (linux, macos, etc.)
    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()
    print("Generate a number in [0,1).")
    fastrand.xorshift128plus_uniform()

We also include functions for fast float generation.

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

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

The pcg32 generator is a 32-bit generator so it generates values in the interval from 0 to 2**32-1. The xorshift128+ generator is a 64-bit generator so that it can generate values in a 64-bit range (up to 2**64-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-3.0.6.tar.gz (9.0 kB view details)

Uploaded Source

Built Distributions

fastrand-3.0.6-pp39-pypy39_pp73-win_amd64.whl (13.3 kB view details)

Uploaded PyPyWindows x86-64

fastrand-3.0.6-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.9 kB view details)

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

fastrand-3.0.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (12.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

fastrand-3.0.6-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (10.0 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

fastrand-3.0.6-pp38-pypy38_pp73-win_amd64.whl (13.3 kB view details)

Uploaded PyPyWindows x86-64

fastrand-3.0.6-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.9 kB view details)

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

fastrand-3.0.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (12.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

fastrand-3.0.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (10.0 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

fastrand-3.0.6-pp37-pypy37_pp73-win_amd64.whl (13.3 kB view details)

Uploaded PyPyWindows x86-64

fastrand-3.0.6-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.0 kB view details)

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

fastrand-3.0.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (12.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

fastrand-3.0.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (10.0 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

fastrand-3.0.6-cp311-cp311-win_amd64.whl (13.2 kB view details)

Uploaded CPython 3.11Windows x86-64

fastrand-3.0.6-cp311-cp311-win32.whl (13.0 kB view details)

Uploaded CPython 3.11Windows x86

fastrand-3.0.6-cp311-cp311-musllinux_1_1_x86_64.whl (26.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

fastrand-3.0.6-cp311-cp311-musllinux_1_1_i686.whl (25.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

fastrand-3.0.6-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (21.1 kB view details)

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

fastrand-3.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (19.7 kB view details)

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

fastrand-3.0.6-cp311-cp311-macosx_11_0_arm64.whl (10.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastrand-3.0.6-cp311-cp311-macosx_10_9_x86_64.whl (10.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fastrand-3.0.6-cp311-cp311-macosx_10_9_universal2.whl (14.0 kB view details)

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

fastrand-3.0.6-cp310-cp310-win_amd64.whl (13.2 kB view details)

Uploaded CPython 3.10Windows x86-64

fastrand-3.0.6-cp310-cp310-win32.whl (13.0 kB view details)

Uploaded CPython 3.10Windows x86

fastrand-3.0.6-cp310-cp310-musllinux_1_1_x86_64.whl (25.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

fastrand-3.0.6-cp310-cp310-musllinux_1_1_i686.whl (24.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

fastrand-3.0.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (21.1 kB view details)

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

fastrand-3.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (19.7 kB view details)

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

fastrand-3.0.6-cp310-cp310-macosx_11_0_arm64.whl (10.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fastrand-3.0.6-cp310-cp310-macosx_10_9_x86_64.whl (10.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fastrand-3.0.6-cp310-cp310-macosx_10_9_universal2.whl (14.0 kB view details)

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

fastrand-3.0.6-cp39-cp39-win_amd64.whl (13.2 kB view details)

Uploaded CPython 3.9Windows x86-64

fastrand-3.0.6-cp39-cp39-win32.whl (13.0 kB view details)

Uploaded CPython 3.9Windows x86

fastrand-3.0.6-cp39-cp39-musllinux_1_1_x86_64.whl (25.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

fastrand-3.0.6-cp39-cp39-musllinux_1_1_i686.whl (24.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

fastrand-3.0.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20.7 kB view details)

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

fastrand-3.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (19.4 kB view details)

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

fastrand-3.0.6-cp39-cp39-macosx_11_0_arm64.whl (10.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fastrand-3.0.6-cp39-cp39-macosx_10_9_x86_64.whl (10.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fastrand-3.0.6-cp39-cp39-macosx_10_9_universal2.whl (14.0 kB view details)

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

fastrand-3.0.6-cp38-cp38-win_amd64.whl (13.2 kB view details)

Uploaded CPython 3.8Windows x86-64

fastrand-3.0.6-cp38-cp38-win32.whl (13.0 kB view details)

Uploaded CPython 3.8Windows x86

fastrand-3.0.6-cp38-cp38-musllinux_1_1_x86_64.whl (25.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

fastrand-3.0.6-cp38-cp38-musllinux_1_1_i686.whl (24.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

fastrand-3.0.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (21.3 kB view details)

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

fastrand-3.0.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (20.0 kB view details)

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

fastrand-3.0.6-cp38-cp38-macosx_11_0_arm64.whl (10.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fastrand-3.0.6-cp38-cp38-macosx_10_9_x86_64.whl (10.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

fastrand-3.0.6-cp38-cp38-macosx_10_9_universal2.whl (14.0 kB view details)

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

fastrand-3.0.6-cp37-cp37m-win_amd64.whl (13.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

fastrand-3.0.6-cp37-cp37m-win32.whl (13.0 kB view details)

Uploaded CPython 3.7mWindows x86

fastrand-3.0.6-cp37-cp37m-musllinux_1_1_x86_64.whl (26.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

fastrand-3.0.6-cp37-cp37m-musllinux_1_1_i686.whl (25.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

fastrand-3.0.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (21.1 kB view details)

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

fastrand-3.0.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (19.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

fastrand-3.0.6-cp37-cp37m-macosx_10_9_x86_64.whl (10.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

fastrand-3.0.6-cp36-cp36m-win_amd64.whl (13.3 kB view details)

Uploaded CPython 3.6mWindows x86-64

fastrand-3.0.6-cp36-cp36m-win32.whl (13.1 kB view details)

Uploaded CPython 3.6mWindows x86

fastrand-3.0.6-cp36-cp36m-musllinux_1_1_x86_64.whl (23.7 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

fastrand-3.0.6-cp36-cp36m-musllinux_1_1_i686.whl (23.0 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

fastrand-3.0.6-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (19.4 kB view details)

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

fastrand-3.0.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (18.6 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

fastrand-3.0.6-cp36-cp36m-macosx_10_9_x86_64.whl (9.7 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: fastrand-3.0.6.tar.gz
  • Upload date:
  • Size: 9.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for fastrand-3.0.6.tar.gz
Algorithm Hash digest
SHA256 28f00c77e4e206fe9a9649fb5b1b3ae3b69e5b6ec4be5f4bc70fae3c09c8ab2e
MD5 209e4e83e6e0cbe7bb0e5dae8d6c62dc
BLAKE2b-256 b5ed7f37d1959c6e33a98c552afbec78b29ca5bec46eff57c29c9f05a8ed5f90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 62b0ebc9bf5138aa8dd3fff97ac7e35dd0fb518ec25b24110482658e329a991c
MD5 acd3496896a1d294d517f2f78f2185f1
BLAKE2b-256 e0bdeacd7bb2f53551d54d7c5edb93079e79399ca92f9215ba637d61ba33c2c1

See more details on using hashes here.

File details

Details for the file fastrand-3.0.6-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-3.0.6-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15503f7dd2e191a6a7b433228c5fb90d2093389a51c0d457efd9d86427dc4fcf
MD5 84ebcf97737e2e91d1e870badf944e5f
BLAKE2b-256 5d55f581ac2c8c6cd4e06179f5a9d3ee638c7b4ea145f11905b247aed132a98c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba2fa1a9853cf5b9dbc5c327d90639dd769c611858c1475a4931320aa673d398
MD5 f73367e72e529aa706ad5d23315604e5
BLAKE2b-256 2c9b60cd2b7da5cd40210dee50fdaeed602ffa105ceab2bbda18a3dfeb00e3a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34d4f21981941acaa333877db46b1e676c48ecd0a09d52d9b24b48773e301208
MD5 d4183d751b34dc023ee4b84672b8a8fa
BLAKE2b-256 c927f6e9b293c780de373a09b447fe615789dc1c4e28c6a5258788df3a956fdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8cd644d76f808142cafdaf29966b673948115ccb8dc0e41a0e57bbfb08fdd90a
MD5 bffd09e6ab752344fe2afbde7b2b2cd1
BLAKE2b-256 fd7ce716350200f99736e5429aaaf087f3962acffe22bcb1a3917aad1badac6e

See more details on using hashes here.

File details

Details for the file fastrand-3.0.6-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-3.0.6-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ce03935b793a1c87b73c0a8adf94c81e764854c29a9bb503b33d81eca8fa39d
MD5 3758c199d9642255102982916f1dfd96
BLAKE2b-256 9d78479c2690f540f38254e50d8e4f9751568704b04c4016254eff518f098f9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6cf65e2d1fac64c785bee580a867ed4569eecf110e4f39400c3a1d55be3c1758
MD5 42bb9c43133abeabd5f890a8bdbcf01b
BLAKE2b-256 5be07f62cbd041d5349b7c8e9f02af87a167558ca6813a34b14fba742a4d5ad1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1fdc9030b08ef798d484103e73955e2d9aa894755ae2c83ea3f0891037d7ddaa
MD5 0c55c2a43729617923d13414d480c7da
BLAKE2b-256 1c79b2ee09fca585d49e2874ad27461065f2dedf5aea67066259fe4cf6278439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 327eff10cd00d85b85a63a9f65df951ef3b6137564b8284ada06c63031223ce5
MD5 b220a22979035dc9ed5308d2921d5667
BLAKE2b-256 9e506f6d8c260e141aed478f90d47199a1f9ce5ca18c2bdaeec5a7b9c3587bc8

See more details on using hashes here.

File details

Details for the file fastrand-3.0.6-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-3.0.6-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db6943377279a4bbfde50bff0339129b6b092b6ac83625d3bcaabe89c1a79de6
MD5 0fc6ff425bc97df0d192d126981700f3
BLAKE2b-256 b51d65535e40203ab287e9da4b064954de66f5ca8b499236a82727a693482bdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 acce36086e5286a3c65a58cb0a4b5e4cd62617157712ad524807f36089a3beb1
MD5 9bb6b90cf34c20b36a7c9c1241726d0f
BLAKE2b-256 213a6abafc607266ca760d52b73f991a35f52f7dcc7f3c23a09f3e09b0ca1c2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c172aa47bb0d5f6e38eaf1f99a64bf15c3a9cf101ba5f02fa4c9c1eacb440cc
MD5 797f02243b376ae89cb8ec983e37ad6f
BLAKE2b-256 2a21e0d91103f7379114fe995f2a56006e44e02346a08ae59a3d62c8e01df545

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-3.0.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 13.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for fastrand-3.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 735754b372afb3bf99596899cce2f509d6e7f1d5defcca3a979bec68b093e06d
MD5 55509f64d3da48130ff765d4c9d0d3e8
BLAKE2b-256 08524a94d60fa190d3bed55ef25c31305a30d299b91e8cea59d190b62a17386f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-3.0.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 13.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for fastrand-3.0.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6132c8ae7754b4362e18d6af8e2cbc884ee43957ffa71d5ed01e5e179a94da01
MD5 652f113beab7735b6d958d8c85c5dc41
BLAKE2b-256 5cbc1078cf7e684188ee36c108ccc646bf66cffd3eb888beed25cd62aa21cda7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9a38123328ea5c03fdc3c68ab6a0c4b5e8c06df62fe67c17000db142426e5f59
MD5 d690825d337446609d4319de2d66cf20
BLAKE2b-256 04df75d9853cc2feac45174fa1a61d9385d37b97453525df198194d00fbdf6f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c297e820b756a48b5265ae44274135c74dce6fac5c20b437e67d4c51003ba351
MD5 3d33416165ed643b956c234252253077
BLAKE2b-256 c43a350ad4ddc7656aac38e25b2c579439fa6b69ce404d4073ea40766f736855

See more details on using hashes here.

File details

Details for the file fastrand-3.0.6-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-3.0.6-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 993974d83ec6ec2a42bb064c6d0624ce647eaa381b141a7f5afaaeb1671a9002
MD5 d04fa1e350885534046c4507ee183f30
BLAKE2b-256 5399b79a29695cbc683eb8985587e4b6bedca315289239aa565e1fdfc3ffa906

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e71c67a6876aa6dd539ca5504667375b37ebfe24aae2c389e5a4b70fe8c9db47
MD5 a999de6a3b73a42212001231bb3ce6cf
BLAKE2b-256 6005c98d1367643141580446e729be9a8a336b240d1e72385d8ee87ba4fe433e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f38973959fee1ca2d16acf75dd1c49a1ba3b3a5b221cb110244074d9f8fac16
MD5 eb71499111bfe8f356207456c00ec568
BLAKE2b-256 fa8b6250f97241e4c309a1ec019cddda76224717ff3abf6defd532502595743f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 08e70955806c7121baf6bbdb5f9ecd888c4925ff430aba7ff5247fc07b3d8b9d
MD5 b301dec8f2527584e1dabd4926d3134e
BLAKE2b-256 b25b4eff0469c9e0a6af503b34611e69f98698a65fa17abd8591cff713589e31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9187a16d34e98455c52cb2521db276e8f2de00dba822838c3c777262300bd67d
MD5 b4a3c0151a1cc4ec79202522dee47d52
BLAKE2b-256 950eefd16dd659e244daac7a75abfa5e8575a5115c678cc09ec434a04f6b9427

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-3.0.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 13.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for fastrand-3.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 49d52a1c716932e01106f2d116bb3a34ed7008e2ae1e832a3b4d8925d9822d20
MD5 cc44b0e3c0f8303de07c0939e02b44bc
BLAKE2b-256 67cce917e57a11994ea1b8296dd71d3df8f0a109e4fc6c55da8ca08152d58a35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-3.0.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 13.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for fastrand-3.0.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8f94d5e79e949c92a59c0bcbdb020b3b0e1797ff3d4f478a9b01b87ca8759646
MD5 6515cc87d68a9ef96b16106c06144929
BLAKE2b-256 432bcc8403c539903ef46938e02a5219f1407ca843017328919d097ea41a70a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b09de3a76252c666fa36ed42d33ab94fa8e5f4d6804a028b641260408bb9f264
MD5 0de4f0d2f6425f8b5dc7295326925d82
BLAKE2b-256 eccdb60d626d2762d98c699e214d532fe71a0af37c2b4c3bd8cd90feafedf6ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 939f78ad0beae442bc22a3442c6d02437f28c1e6d4134f3eb81a74b2d7b176e7
MD5 c4e57967d102fbf5899ba6ed4ee8edcb
BLAKE2b-256 e508e5f5d15fa65052b711563780e2459fe066224de91e9ee63f8ec7abacc70c

See more details on using hashes here.

File details

Details for the file fastrand-3.0.6-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-3.0.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a169d2c4fc8f61898ea96382607ac8a1edd00ad2c79f0e06e6c1d648919ac4c
MD5 bf0c536befe678adb8aabcbc2a88b149
BLAKE2b-256 f5203ed03fecfb7cc78fe06c2f9888a91089991056087d0b2a51194baf006ff5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af4c1040274343abf4b5b725366fb496836557358e8e3a63efdf73c1daa9cd16
MD5 43dbb09ca19a3028a8763885a82c2f39
BLAKE2b-256 3615d08a836ff7d9cba7830bbdd8759089fea5acb6e50b741b81463b62d1b5cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e19359b48a36069f624ec4e39b458379f625206dafafa5b3bb495654c0c577d
MD5 4c7af4c94015aa3007e8eaa158bacee4
BLAKE2b-256 b2a7c05047b6a5173c1b4fc3290c169559b59d4b5fd059f314439e3cf944bb28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf6bb3b9a57c6c7510b512bab2e95cf659175ee43b5bdfeba5e4b694e957b75d
MD5 85aa48681e77ed708e0e83c8229345e8
BLAKE2b-256 9e826fab15d90cd5beaf4116b88c4a746de8cacf113ee20de69392fc5170bfca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c2f203a65a831e05772c7c4043b5e9b3d033875b6440c3d14453f3ea2f11706f
MD5 8eec920704e6842891652bc4ff6dc18e
BLAKE2b-256 48111c51519967b819088e8a63567c45f247ec639558925830364761f35828a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-3.0.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 13.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for fastrand-3.0.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 53d857d8e53c1017daf50ebc4b3299a9cae723571cf86d79261b1b6456eeb9f6
MD5 64ebd2b93cdab52952d38cf915b153c2
BLAKE2b-256 ae041fd881fc42c30ee69b9b7dceb27a3961c0a70dd0f3e91c1fa11c77a3dd85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-3.0.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 13.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for fastrand-3.0.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cd89759bdc52e6d451332132ea6d19f1d8eca4fea9ed705e43935fe011979d94
MD5 8f39ecbb28606a6f4c400a01c6a8b344
BLAKE2b-256 b24c5bd760ff27b69b69e35b2282067937680139428dab39e1f645c51d685ab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 73d27cedf97c3086643cc29c27a8a63a395ef18c40921500ebf921ea8aab091d
MD5 ea315ac72e8a759b343dfb8e64a4b3f9
BLAKE2b-256 30a5aca3ff3d6035c3e73a798eb15e6523734a02a386657d865bf754d9f64bae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 83ebd2b5921e1d3b19fcc56ec6e7d593e97b632d8d5ea2405830d58f1c29eead
MD5 0b4c41b6ec2bdd7f87a3477f94dac7b3
BLAKE2b-256 7236954cc67785d9f7c31403257fe34574d12c98503e7c825c290375885f07c2

See more details on using hashes here.

File details

Details for the file fastrand-3.0.6-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-3.0.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83c037ac2e58c065ca1587ec84027a427d09c57508de8f075ee147732980295e
MD5 1c14adc5e3e6631ffbcf36d9471bcf05
BLAKE2b-256 e42c168071a83a4745643ef174e375a7996fa5bd894a40714d40e4214ad3999f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 783c77fdac08de5f1d9f1b67464a5f0c4f899908fda1d365d2e5f9650391bea8
MD5 fbdd5003eeb50011075b1501ac862e02
BLAKE2b-256 3901293d23eed0afdfbccf3ee1a21068b7979934ca07fc8d72e412bdf772ba3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac0a7672532b7aab831297c0fd4a7b7cd2d77daafa9e34088e6ad429983559d1
MD5 4988fe31c4902ac3515d9b3a9c48830f
BLAKE2b-256 a8d32ed5e014a2780e78b81b5223260870047f07096a9660f6120bc9290b4a07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 08d1fcee6001f5a47d27ca9abc33e76b2ccbe886e9fcbc584fe6777685d73ebb
MD5 c3e7805ef8cc0bb8c70095f0ac32c8b9
BLAKE2b-256 2af25fe555518058592283fbf7aa3e19a3eb1f97887628616ac9118ba94b9e5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 82b156613f7aaae7814bffa3368f5794994d03b9f615370059135d03f78d4719
MD5 147d7790dd1619f7879704cddb37d03f
BLAKE2b-256 61975e30c7cca0550f3b3262195355ee781036f57e7d89a130550e34a7760ed4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-3.0.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 13.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for fastrand-3.0.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3e33900111c628b2b0100eee34c824ba569f05523017e8d1c001b2ca6926c612
MD5 792e8fb99f692a2052c8c41033640354
BLAKE2b-256 66a5ff534a854ad0b0ffbce4a9b06c2c731e79ec1301f4c9e3a39c1cecb18197

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-3.0.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 13.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for fastrand-3.0.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f496c56ae44528f2b4ffa28190d25557a03d1a1093f2bf703a0f3dac0d14de37
MD5 c7a44acd7e3748c47b9e8c5ea1ce65cd
BLAKE2b-256 f88628f882bd0a92428396d1e82b6023cc63d56f592e3fd77aa4f2dfa7316bf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 439cc88ad48430bf34179e8333c3833760e2d0814c3d70c95d9c7f2d454b5b25
MD5 e8b3585c4dc988eb201e925525bdef9c
BLAKE2b-256 76f139c9b6ddb96e8ce4f45caa0f876291ba56b484c0d0a45efb91a5f0c3bbb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3ee17eb883aee9e660c219c1b999641e576c3ed0c48d546c9ce6910d6bf6e6bf
MD5 a25ddf4ff1cb095b5a4cbcc1228d7223
BLAKE2b-256 b3c8f0a104150eb4d8b1df30a504396614db989168e206d0f61b1518f0e917dc

See more details on using hashes here.

File details

Details for the file fastrand-3.0.6-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-3.0.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f00e0996e827206283bb9c35cf848f34fd94a9f42446b00b25108d406ee04da
MD5 0544e725560350c1b99ef2cdd14cf0fa
BLAKE2b-256 530dc1d497d65b97e8595bf496df555ec8aca209c757794ba6411f8b10ece22f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 37b5e06a7146f1eda5191f222bea066289e07845f5e1e0db66fc18a1649045a3
MD5 2d22fbbbcb6cc9997448033e997dac63
BLAKE2b-256 beb246a585dc971408a42d751d0bd44cc7a5632672447396dd9fe964640e704a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc9cae8cb5e0170323ae1d7dffa657c86415b80c1533fa4b841ff1bca9fe544b
MD5 f7ce506f97987e98913d62e60ede0310
BLAKE2b-256 6e620325e06d473b4fd03fabbc0f1196ea29005e987cdafa7280c3178d7e3af0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e1d374146bc9fdb18b8ab30cc84a64ef05e85bbccc77689739c28d827543c66e
MD5 bf74dac969fd58a43df3b19ce21d69da
BLAKE2b-256 31dc6a413dfbb31279dd063b1bcfe3e5eec24125b30a2cd5b7f450d4dd5239cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dd74487ee932c3376aed81e2985983806c6834920a391e183d6d54dcb9b9adcf
MD5 ce33c65df7afdf88140cbf8587344032
BLAKE2b-256 66512a966565e64c8fb5b650f4504975edf963a35bd884f9e138f0dfe478aec7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fastrand-3.0.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2ef9fadc0a519f699041ae148657a83c8cec64f4735475453fdaa376154dc240
MD5 ceaa057409472169c0e25ce0351eaf15
BLAKE2b-256 4ddc78155215ffa50a3a29efbe272d838edd52df5aabc0b809fadef6e46df8c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-3.0.6-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 13.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for fastrand-3.0.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1f23f3afe7b06d3508f91bb112da6d13b06acee0a2752948cd9e40a3342bb3b7
MD5 fad9a8af2ff0dd2182102eb6f53a27cc
BLAKE2b-256 b4e525f0ea6d1287f9e8aa0a5fc0e9f63a8c9ff7fb9dc7a318b78c0fe05f4c79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 49cb12b15bb9bfcf65c7493d870117f5507b39b23a5b04b7221f8f501cafc440
MD5 27503327226da0dbee20ec0f4768f767
BLAKE2b-256 31de956464d6d03face1440157d79f3b1adbf74fee6959b92ecb17c542e31fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 29c3e1894e04330151c6293bb8c4cc9cde7e2dc79c5a507285f14a00b9fcc98c
MD5 0388acd3f045abb94b0dfd180a04cdbf
BLAKE2b-256 dda24daf0f77564a253e0d9af20eb5b808fe4a6f6ff808063db40e4e12959be0

See more details on using hashes here.

File details

Details for the file fastrand-3.0.6-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-3.0.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d29219f58605c018cb66b007c5fb1ff0b2481c604ed49675223c00560f769959
MD5 730c5b289a26a9c064e3bfc65c9f4ecf
BLAKE2b-256 45e5660659073c6d2ac0b91955c0ee3238e203b211ffe96bef48ed91e6ee27db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5bee694ac4a8d767cf4390d71ec9063ad2e37ebd85087c7a9491e3ab7bb115ee
MD5 6e45ce4c0c0659b219b0d5c30154010b
BLAKE2b-256 f37909b8b89db06328775d4cdde8ea552d146fc8e737f59a2234145fdd4c6ecf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a6bdc841d3b2f2d6606bb3c2f5ed67f10edcf10a114fbbfa14d65d46385b17d
MD5 547a0548463279b97c2931dd997dbb6e
BLAKE2b-256 43056453176a12f4c3f3ac3371f9b6431cfc68c92a6bab12c5043016c31fb06e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fastrand-3.0.6-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 19cfeb7c28d7a139edb89939a8e4dd86060cfe7f82f2cf70f248575e5a9a6fe3
MD5 b8b0481b78bcc664de55a9be2c7b0a0b
BLAKE2b-256 cb4e4e7de0a64fd76cca76e3a00fcb479662292c6b5434bf58163ee84b20056f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrand-3.0.6-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 13.1 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for fastrand-3.0.6-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 78ce2a004825a557cb0c19cc39b2162ced0e5cad261e514f99add90c59f06eaf
MD5 b8f01f022f3d5a53c846ca7a754076a8
BLAKE2b-256 2f4b8e7449b15ece2a5154bd6a93acfc3217db6887f01dc5dbf1756509947cac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 abb8ad950c299f0e92b14a6ef026122247ccedb06f7068026634c8ca728a5fda
MD5 37e40cfe792233116b7ea4e579ef4962
BLAKE2b-256 19936d2dfb77dc5d7f985df6aa406d8fecf7069abae807d0d7ba87836e07060c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 13e3c3db831e5f42c87279a3c23efeeb1243958dbe483994da095ce2a7e96e8e
MD5 900228bee512ac7e6c0ddbd752882b30
BLAKE2b-256 9e01f456a979aaa42bd7cf9d41b3150d8d4b86ef1d6c028026324cf735988605

See more details on using hashes here.

File details

Details for the file fastrand-3.0.6-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-3.0.6-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ccab9402a2b9327ca5bcf3175fdefad3834d58cb6238e6b09a04adbccc09a55
MD5 63810e553a145cf0c8ab97a0b2a64332
BLAKE2b-256 dbc7107a8c4fad7913cf70d71a87b2de2eba175da5022802c7f120b198b55730

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98bb455a18811c415bdea8c08f1737da2416f094cfabeecdb5cd82eb525bb429
MD5 437642e7ce86e233466e13cf8f21dceb
BLAKE2b-256 08b04cb25b3a1eac1db5644faf1cf8f1d9ef29dfc988b248358b3c3188a99661

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrand-3.0.6-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4cf69204079a5b6f0c50802d89d973a7b410b0b3cb1b982829f945e3e5a54c63
MD5 6b6cc27bbcfe1663b2f43ff996a24dba
BLAKE2b-256 c536afea15209097f2b920f9e18539b4e58ef5e82f76a37eb405f36dc090faa1

See more details on using hashes here.

Supported by

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