Skip to main content

No project description provided

Project description

randompack

This package provides Python bindings to the C library Randompack, a random number generation toolkit that also includes interfaces for Julia, R, and Fortran. Randompack exposes a collection of modern RNG engines, including xoshiro256++/**, PCG64 DXSM, sfc64, Philox, and ChaCha20, together with a range of probability distributions, both integer and continuous. The library allows matching random draws across platforms and supported language interfaces. It provides unbounded and bounded integer draws, permutations, sampling without replacement, and 14 continuous distributions, ranging from basic ones (uniform, normal, exponential), through commonly used distributions (beta, gamma), to more specialized ones (such as skew-normal). Multivariate normal sampling is also supported.

Through SIMD instructions on modern CPUs, the inherently fast default engine xoshiro256++ delivers high throughput for bulk generation, typically providing 3–6× faster performance than NumPy for uniform, normal, and exponential draws.

For more information, including implementation details, benchmarking results, and documentation of engines and distributions, see the main project readme file at https://github.com/jonasson2/randompack. The same page also links to DEVELOPMENT.md, which contains setup and development instructions, including details specific to the Python interface.

Cross platform consistency

Given the same engine and seed, samples obtained on different platforms (programming language/computer/compiler/OS/architecture) agree. For uniform, normal, exponential, and integer distributions the agreement is bit-exact (x == y holds). For the remaining distributions, samples agree to within ca. 2 ulp. If the bitexact parameter is set to true the agreement is bit-exact for all distributions.

Usage

Installation, setup, and seeding

pip install randompack
import numpy as np
import randompack
rng = randompack.Rng()              # default engine (x256++simd)
rng = randompack.Rng("pcg64")       # specified engine; rng is randomized by default
randompack.engines()                # list available engines
rng.seed(123)                       # deterministic seed
rng.seed(123, spawn_key=[1, 2])     # independent substreams
rng.randomize()                     # seed from system entropy
rng2 = rng.duplicate()              # identical independent copy

Continuous distributions

x = rng.unif(100)                   # 100 draws from U(0,1)
y = rng.unif(100, a=2, b=5)         # 100 draws from U(2,5)
s = rng.unif()                      # scalar draw
z = rng.normal(5)                   # 5 standard normal draws
t = rng.normal(5, mu=2, sigma=3)    # 5 draws from N(2,3)
u = rng.beta(50, a=2, b=5)          # 50 draws from the Beta(2,5) distribution
v = rng.normal(5, dtype=np.float32) # single precision
rng.unif(out=x)                     # use shape and data type of x

Discrete distributions

x = rng.int(100, 1, 6)              # integers in [1,6] (inclusive)
p = rng.perm(10)                    # permutation of 0...9
s = rng.sample(20, 5)               # 5-element sample from 0...19 (without replacement)

Multivariate normal

Sigma = np.array([[1.0, 0.2], [0.2, 2.0]])
X = rng.mvn(100, Sigma)                          # zero mean
Y = rng.mvn(50, Sigma, mu=np.array([1.0, 2.0]))  # specified mean
Z = np.zeros((100, 2))                           # 2 columns
rng.mvn(Sigma, out=Z)                            # Sigma must be 2×2

State control and serialization

rngx = randompack.Rng("x256**")
rngp = randompack.Rng("philox")
rngx.set_state(state=[1,2,3,4])                  # general state setter
rngp.philox_set_state(ctr=[1,2,3,4], key=[4,6])  # engine-specific state setter

rngy = randompack.Rng("x256**")  # engines must match
state = rngx.serialize()         # copy engine state of rngx
rngy.deserialize(state)          # and put in rngy

rng.full_mantissa(True)          # enable full 53-bit mantissa (52-bit is default)
rng = randompack.Rng(bitexact=True)            # make agreement across platforms exact
rng = randompack.Rng("philox", bitexact=True)  # exact agreement with specified engine

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

randompack-0.1.1.tar.gz (322.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

randompack-0.1.1-cp314-cp314-win_amd64.whl (315.2 kB view details)

Uploaded CPython 3.14Windows x86-64

randompack-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (307.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

randompack-0.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (307.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

randompack-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (190.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

randompack-0.1.1-cp314-cp314-macosx_10_15_x86_64.whl (236.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

randompack-0.1.1-cp313-cp313-win_amd64.whl (309.5 kB view details)

Uploaded CPython 3.13Windows x86-64

randompack-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (307.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

randompack-0.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (307.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

randompack-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (190.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

randompack-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl (236.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

randompack-0.1.1-cp312-cp312-win_amd64.whl (309.5 kB view details)

Uploaded CPython 3.12Windows x86-64

randompack-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (306.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

randompack-0.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (307.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

randompack-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (190.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

randompack-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl (236.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

randompack-0.1.1-cp311-cp311-win_amd64.whl (311.7 kB view details)

Uploaded CPython 3.11Windows x86-64

randompack-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (309.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

randompack-0.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (310.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

randompack-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (193.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

randompack-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl (237.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

randompack-0.1.1-cp310-cp310-win_amd64.whl (313.6 kB view details)

Uploaded CPython 3.10Windows x86-64

randompack-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (310.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

randompack-0.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (311.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

randompack-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (195.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

randompack-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl (238.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file randompack-0.1.1.tar.gz.

File metadata

  • Download URL: randompack-0.1.1.tar.gz
  • Upload date:
  • Size: 322.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for randompack-0.1.1.tar.gz
Algorithm Hash digest
SHA256 ba125fdde7dae69ea62044d441e63565f871366ef4e0975b2aa9e8008f9ecfc3
MD5 306f371f68a389e939db5b6b1fbcce77
BLAKE2b-256 ac2523f8f3d9a4e2282d99747c48ba01690f0a4d394a709bca5d419c004b5d66

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: randompack-0.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 315.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for randompack-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 62dc85dab6997e36faa7d23dfd8f103e14badaca213c64b961d8739034bdb30d
MD5 e9dde334b4bc21a6db151495fbe103c6
BLAKE2b-256 af161dcb38d43ce77430046d3baae5d3d8bd8e76f7520e909d3e9cbe00d9db85

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c12983353ccec84e2125c7872b1b5e5f3c4ff3686f598ee47e75be7d86341e39
MD5 e600bbcd499c98ec1b495baa6f92aff8
BLAKE2b-256 2d8d613b6ad2eb2edb2729bbdc3629937f1570dfd1f51e1005ac5dbd068956df

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 548da74b2d2c3034eab66c824086e57cb2e9b68ac94072a6d7fd66909d0d59c0
MD5 1d717b8b923b87f544faa63a2542b18e
BLAKE2b-256 98f9f12e84715c2685ed7ec2fd7df9075494c815a6807fbc4bc293bb2daedaee

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69ee178e1d580b64c7ba2aee8a7d22cbc096e5b8fea5d1fff65378b04f6e61ee
MD5 64d6a2112f1bd3acc4df998d6e89254e
BLAKE2b-256 bd5ffcdcef9f31ef0afc9c179e6ca5ff0688e6769bea68825c135431b328cc2f

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a241ccf637237c26ea902106b4af9519d7bbd48c04a0c15d8d72a214d928c72d
MD5 4e2fd3e703217513f9e4baf8a97d2b69
BLAKE2b-256 1a75026f20fefb63c9860cccaa6e4e1d9cbb0ff479b54c42f87c1ccc795bc3f7

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: randompack-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 309.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for randompack-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6ebfa41b47cc4af9025085ae2428408133733ec7e368a61546fa7a663723481c
MD5 f6f4993596f3ae537893a29abc6de6f9
BLAKE2b-256 0043be079b8ded8c7089907a0aee96f2257aedd18b32ee84575781be7dff9a27

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be6678afaa0d4a4de4c921521ddded3d0f2a10f93383de0a9de57f602bb0d6c1
MD5 68b0a2fce05000dd5cd05d89bfa06b24
BLAKE2b-256 6124704947aca9f2fa382fa9865373b3c483d3cf094bcb0975ef71f30ebe9cb3

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 31bbec76e9ae95c0241c4d8eadeb76befe816495e3dbdebe10171643ccbc64e7
MD5 c8d4447be7e68b629618396a9a3142cb
BLAKE2b-256 f0f2b10190d4da2a39ca66194f420c9d71612375984e33ed06bb6ee2d1daba19

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a616d8e92cfe0104ba5127bacd4b1c16020441a71a6613ab31990993c24b1352
MD5 b746b4b36c2caa26a1153cb1c760eeec
BLAKE2b-256 44b31ec2a406821ec0ea694171a31b3623d04489bd2ae8a3b23189f55137e936

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f53ddbb5efc6d6111a20ee8ef8d07c0a5734a33b4f56b0c32b1642693ed5ea92
MD5 116e23a724c7ce849ab47d187a408329
BLAKE2b-256 7725c7c418eca8c3f75a11057b19933853f38eba5f29e9e34d0accbd5dc632a4

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: randompack-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 309.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for randompack-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 15ba47ab59b7f767680bdfc80b2f22cce9828e280e8220063136cad494dd1d8b
MD5 adf9b34c70a5725e4baa6019acac818a
BLAKE2b-256 5ad2dd6d379cb4cf05c7562c2d25d587bd6c1fffc49f379c70a4de6a7ea2dc01

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f93685c3354a0f0ccc6849fdd87244a609f8d67f7182f06d7a2c4bbcb0886cba
MD5 5e082c323df012deed2471997c7ac1b7
BLAKE2b-256 24a5cd9efab41ab57d4139a90c56c7bd21875e0d7214f1545bcc3dca3362d667

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df39b19c4287179da2f49f7fcee5de9b500b6c42724015954a168df1c32733d9
MD5 c92a6b0a30b2454405cb31729f36b8ac
BLAKE2b-256 c85403a44a609b92f8663d13c3a8df580f0d8335a12b187a25874508c075ec1c

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a711c24b36dd6a0d77aae6e4f78df2286173134ce0fe99e152355c484bff9528
MD5 d2eb7da458387b5a08441792cc7dd926
BLAKE2b-256 337ee61039ce83cead8d34964e68750b6338e458ba91a48513829c208c1d8c2d

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4dc679096747cff4a3bf6db0e5d0a0c7937fd4b92474540a99b4160553242380
MD5 0a3feb991947d2a0c362d1f096bdcb4c
BLAKE2b-256 87a118b665b172a8947e92df9e991a85766c34513dc272f40b4cf1a6d38cac50

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: randompack-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 311.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for randompack-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 26c881a8ec224bb22eb83e9d332b2d9e5c2aaddc585ec87e7a567cbf08795370
MD5 f0d1ab31d3a32f09fd23e89ea2a2d45b
BLAKE2b-256 6ba5a50b8a1658aa85bda678670032884ad36efa4db62f30b31d3a5071a61c5d

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e8c47db534c4c2a50a58b97feebb2bdcaafa8577a1d5f43ac7c1689cc981137
MD5 b863400191f6caf0e576a22ff8a7185e
BLAKE2b-256 27bca0813be92c3b98ede241984c3691010ab762e3047327e699f8e7cb307535

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 365cfdc5d1a4a7757299fd31e1b51f4de0d7fb40acd37539ee7f181dff82b7ce
MD5 e522c612dbcd94880a20d2d585d93556
BLAKE2b-256 f756b8a06690831aabc47816a8daa2ec1bcb6097677fdfd7afca11774db2bb5d

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd4055f8b0ab565e27cd3d9d6abf1dc73903cbf3224994ce6da8d11db84423a4
MD5 086bb0571ead6659df6a8fe7f8e4ed3a
BLAKE2b-256 2b67f6e4e5bf5343e558df52cd2e37be972c66c048ce2b479b06363d7d69f14f

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db851f538a10e18cd7e8fb80650b6c81560a2c8def73ce5bd5ec94119c5058da
MD5 fe8ead9e4ecbc91657c6430720d423e2
BLAKE2b-256 a652a1f81960979886a263fd9c5a5ab1cc4068cb509c80deeac9527678d58554

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: randompack-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 313.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for randompack-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dcc74bb3ffddef0a3cccb5a3a6085636e9e08c203e4db9471fbdaf8784134d0a
MD5 7e5890c229ac34cf625a4e3235c84a72
BLAKE2b-256 b346a6d4eb53d26f567ab5f06de7d04c633a2ab006df4d85fed7ae0496e87efc

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df7647b47c5f01e286834fc404b8954c6abd2b93e385af6e623b78d75e363370
MD5 1880e88e3d042c90562f381c6914ea6d
BLAKE2b-256 bfa5ce5fe7a8dbb8cfa10a73b9bc5d0abdc9e652612a8a3f3ad297e878e759ee

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f6ca54f538f1d7d8bf4500d45ab97f5d65d55862a563809a4d03edab81f8077
MD5 50d8296de0ec9d7f4a9a399524fd338b
BLAKE2b-256 f0fc5711348a8320cc4c5d773c0a913ab5a9bba085cd6584dd09f12968ebc9bb

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20b9a754c84719be7d870714ccd0655b3df0ab5f3503de557c8f63a387c06146
MD5 5f266a5f1c86c6686cf542c5c3450a94
BLAKE2b-256 b41775b265e1f036bd85647d785ad4c3883419ce2d1220bc59b0cdb08e73ad06

See more details on using hashes here.

File details

Details for the file randompack-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for randompack-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 74a0f3e19213d134ce1935501a1520cd626c0c7b77a7fbf92521b86c7a974cd0
MD5 30598b5ad23a20e8899c917042b62940
BLAKE2b-256 3141b6aa1caa5aec4e26a626171ce3109f31256c8239fd70f6508263f84daf95

See more details on using hashes here.

Supported by

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