Skip to main content

Fast and lightweight set for unsigned 32 bits integers.

Project description

Documentation Status

An efficient and light-weight ordered set of 32 bits integers. This is a Python wrapper for the C library CRoaring.

Example

You can use a bitmap nearly as the classical Python set in your code:

from pyroaring import BitMap
bm1 = BitMap()
bm1.add(3)
bm1.add(18)
print("has 3:", 3 in bm1)
print("has 4:", 4 in bm1)
bm2 = BitMap([3, 27, 42])
print("bm1       = %s" % bm1)
print("bm2       = %s" % bm2)
print("bm1 & bm2 = %s" % (bm1&bm2))
print("bm1 | bm2 = %s" % (bm1|bm2))

Output:

has 3: True
has 4: False
bm1       = BitMap([3, 18])
bm2       = BitMap([3, 27, 42])
bm1 & bm2 = BitMap([3])
bm1 | bm2 = BitMap([3, 18, 27, 42])

Installation from Pypi

Supported systems: Linux, MacOS or Windows, Python 3.7 or higher. Note that pyroaring might still work with older Python versions, but they are not tested anymore.

To install pyroaring on your local account, use the following command:

pip install pyroaring --user

For a system-wide installation, use the following command:

pip install pyroaring

Naturally, the latter may require superuser rights (consider prefixing the commands by sudo).

If you want to use Python 3 and your system defaults on Python 2.7, you may need to adjust the above commands, e.g., replace pip by pip3.

Installation from conda-forge

Conda users can install the package from conda-forge:

conda install -c conda-forge pyroaring

(Supports Python 3.6 or higher; Mac/Linux/Windows)

Installation from Source

If you want to compile (and install) pyroaring by yourself, for instance to modify the Cython sources you can follow the following instructions. Note that these examples will install in your currently active python virtual environment. Installing this way will require an appropriate C compiler to be installed on your system.

First clone this repository.

git clone https://github.com/Ezibenroc/PyRoaringBitMap.git

To install from Cython via source, for example during development run the following from the root of the above repository:

python -m pip install .

This will automatically install Cython if it not present for the build, cythonise the source files and compile everything for you.

If you just want to recompile the package in place for quick testing you can try the following:

python setup.py build_clib
python setup.py build_ext -i

Note that the build_clib compiles croaring only, and only needs to be run once.

Then you can test the new code using tox - this will install all the other dependencies needed for testing and test in an isolated environment:

python -m pip install tox
tox

If you just want to run the tests directly from the root of the repository:

python -m pip install hypothesis
# This will test in three ways: via installation from source,
# via cython directly, and creation of a wheel
python test.py

Package pyroaring as an sdist and wheel. Note that building wheels that have wide compatibility can be tricky - for releases we rely on cibuildwheel to do the heavy lifting across platforms.

python -m pip install build
python -m build .

For all the above commands, two environment variables can be used to control the compilation.

  • DEBUG=1 to build pyroaring in debug mode.

  • ARCHI=<cpu-type> to build pyroaring for the given platform. The platform may be any keyword given to the -march option of gcc (see the documentation). Note that cross-compiling for a 32-bit architecture from a 64-bit architecture is not supported.

Example of use:

DEBUG=1 ARCHI=x86-64 python setup.py build_ext

Optimizing the builds for your machine (x64)

For recent Intel and AMD (x64) processors under Linux, you may get better performance by requesting that CRoaring be built for your machine, specifically, when building from source. Be mindful that when doing so, the generated binary may only run on your machine.

ARCHI=native pip install pyroaring  --no-binary :all:

This approach may not work under macOS.

Development Notes

Updating CRoaring

The download_amalgamation.py script can be used to download a specific version of the official CRoaring amalgamation:

python download_amalgamation.py v0.7.2

This will update roaring.c and roaring.h. This also means that the dependency is vendored in and tracked as part of the source repository now. Note that the __croaring_version__ in version.pxi will need to be updated to match the new version.

Tracking Package and CRoaring versions

The package version is maintained in the file pyroaring/version.pxi - this can be manually incremented in preparation for releases. This file is read from in setup.py to specify the version.

The croaring version is tracked in pyroaring/croaring_version.pxi - this is updated automatically when downloading a new amalgamation.

Benchmark

Pyroaring is compared with the built-in set and other implementations:

The script quick_bench.py measures the time of different set operations. It uses randomly generated sets of size 1e6 and density 0.125. For each operation, the average time (in seconds) of 30 tests is reported.

The results have been obtained with:

  • CPU Intel Xeon CPU E5-2630 v3

  • CPython version 3.5.3

  • gcc version 6.3.0

  • Cython version 0.28.3

  • pyroaring commit dcf448a

  • python-croaring commit 3aa61dd

  • roaringbitmap commit 502d78d

  • sortedcontainers commit 7d6a28c

operation

pyroaring

python-croaring

roaringbitmap

set

sortedcontainers

range constructor

3.09e-04

1.48e-04

8.72e-05

7.29e-02

2.08e-01

ordered list constructor

3.45e-02

6.93e-02

1.45e-01

1.86e-01

5.74e-01

list constructor

1.23e-01

1.33e-01

1.55e-01

1.12e-01

5.12e-01

ordered array constructor

5.06e-03

6.42e-03

2.89e-01

9.82e-02

3.01e-01

array constructor

1.13e-01

1.18e-01

4.63e-01

1.45e-01

5.08e-01

element addition

3.08e-07

8.26e-07

2.21e-07

1.50e-07

1.18e-06

element removal

3.44e-07

8.17e-07

2.61e-07

1.78e-07

4.26e-07

membership test

1.24e-07

1.00e-06

1.50e-07

1.00e-07

5.72e-07

union

1.61e-04

1.96e-04

1.44e-04

2.15e-01

1.11e+00

intersection

9.08e-04

9.48e-04

9.26e-04

5.22e-02

1.65e-01

difference

1.57e-04

1.97e-04

1.43e-04

1.56e-01

4.84e-01

symmetric diference

1.62e-04

2.01e-04

1.44e-04

2.62e-01

9.13e-01

equality test

7.80e-05

7.82e-05

5.89e-05

1.81e-02

1.81e-02

subset test

7.92e-05

8.12e-05

8.22e-05

1.81e-02

1.81e-02

conversion to list

4.71e-02

2.78e-01

4.35e-02

5.77e-02

5.32e-02

pickle dump & load

4.02e-04

6.27e-04

5.08e-04

2.41e-01

5.75e-01

“naive” conversion to array

5.12e-02

2.92e-01

4.75e-02

1.20e-01

1.18e-01

“optimized” conversion to array

1.27e-03

3.40e-02

nan

nan

nan

selection

1.77e-06

5.33e-05

1.14e-06

nan

1.64e-05

contiguous slice

9.38e-05

9.51e-05

6.99e-05

nan

2.04e-02

slice

2.88e-03

3.04e-01

1.00e-01

nan

4.74e-01

small slice

8.93e-05

3.00e-01

3.60e-03

nan

1.79e-02

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

pyroaring-0.4.5.tar.gz (152.8 kB view details)

Uploaded Source

Built Distributions

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

pyroaring-0.4.5-cp312-cp312-win_arm64.whl (163.5 kB view details)

Uploaded CPython 3.12Windows ARM64

pyroaring-0.4.5-cp312-cp312-win_amd64.whl (202.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pyroaring-0.4.5-cp312-cp312-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pyroaring-0.4.5-cp312-cp312-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pyroaring-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyroaring-0.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyroaring-0.4.5-cp312-cp312-macosx_11_0_arm64.whl (267.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyroaring-0.4.5-cp312-cp312-macosx_10_9_x86_64.whl (322.2 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

pyroaring-0.4.5-cp312-cp312-macosx_10_9_universal2.whl (585.2 kB view details)

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

pyroaring-0.4.5-cp311-cp311-win_arm64.whl (163.2 kB view details)

Uploaded CPython 3.11Windows ARM64

pyroaring-0.4.5-cp311-cp311-win_amd64.whl (201.1 kB view details)

Uploaded CPython 3.11Windows x86-64

pyroaring-0.4.5-cp311-cp311-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pyroaring-0.4.5-cp311-cp311-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pyroaring-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyroaring-0.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyroaring-0.4.5-cp311-cp311-macosx_11_0_arm64.whl (266.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyroaring-0.4.5-cp311-cp311-macosx_10_9_x86_64.whl (319.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyroaring-0.4.5-cp311-cp311-macosx_10_9_universal2.whl (580.8 kB view details)

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

pyroaring-0.4.5-cp310-cp310-win_arm64.whl (163.1 kB view details)

Uploaded CPython 3.10Windows ARM64

pyroaring-0.4.5-cp310-cp310-win_amd64.whl (200.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pyroaring-0.4.5-cp310-cp310-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pyroaring-0.4.5-cp310-cp310-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pyroaring-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyroaring-0.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyroaring-0.4.5-cp310-cp310-macosx_11_0_arm64.whl (266.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyroaring-0.4.5-cp310-cp310-macosx_10_9_x86_64.whl (318.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyroaring-0.4.5-cp310-cp310-macosx_10_9_universal2.whl (580.0 kB view details)

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

pyroaring-0.4.5-cp39-cp39-win_arm64.whl (163.4 kB view details)

Uploaded CPython 3.9Windows ARM64

pyroaring-0.4.5-cp39-cp39-win_amd64.whl (200.8 kB view details)

Uploaded CPython 3.9Windows x86-64

pyroaring-0.4.5-cp39-cp39-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pyroaring-0.4.5-cp39-cp39-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pyroaring-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyroaring-0.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyroaring-0.4.5-cp39-cp39-macosx_11_0_arm64.whl (266.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyroaring-0.4.5-cp39-cp39-macosx_10_9_x86_64.whl (319.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyroaring-0.4.5-cp39-cp39-macosx_10_9_universal2.whl (580.7 kB view details)

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

pyroaring-0.4.5-cp38-cp38-win_amd64.whl (200.8 kB view details)

Uploaded CPython 3.8Windows x86-64

pyroaring-0.4.5-cp38-cp38-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pyroaring-0.4.5-cp38-cp38-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pyroaring-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyroaring-0.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyroaring-0.4.5-cp38-cp38-macosx_11_0_arm64.whl (265.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyroaring-0.4.5-cp38-cp38-macosx_10_9_x86_64.whl (318.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pyroaring-0.4.5-cp38-cp38-macosx_10_9_universal2.whl (578.8 kB view details)

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

pyroaring-0.4.5-cp37-cp37m-win_amd64.whl (201.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

pyroaring-0.4.5-cp37-cp37m-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pyroaring-0.4.5-cp37-cp37m-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pyroaring-0.4.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pyroaring-0.4.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pyroaring-0.4.5-cp37-cp37m-macosx_10_9_x86_64.whl (319.0 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file pyroaring-0.4.5.tar.gz.

File metadata

  • Download URL: pyroaring-0.4.5.tar.gz
  • Upload date:
  • Size: 152.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyroaring-0.4.5.tar.gz
Algorithm Hash digest
SHA256 816c93baa5c729ff906056ffedf723c9cddaf1ea988a882e0ec5062ae9ea673c
MD5 3ded6afadf7adbf2cf9e4245cd0a775d
BLAKE2b-256 a4c74291bbd2e32640fe1327bb75790ff5d90485a6c5f20eeea45d2ea06f9edb

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pyroaring-0.4.5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 163.5 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyroaring-0.4.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2320a5dc11dd165b684f58db6a761bba2d058da88d14e7c8a65441016df1e70f
MD5 92ab0da4cca4c801e55ebd6d934b9609
BLAKE2b-256 0aca4fed81df5eff35f4ab18372571cb72e4f98ab461c0ea8a15ce92a3236c71

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyroaring-0.4.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 202.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyroaring-0.4.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 187953fef584a3d2c84e42ff3d471aca5400e3f5676542f30b65f87f9e2ea47e
MD5 8333d5fa7ab9aeaf59f2400d28fece1e
BLAKE2b-256 a8f17e9a85be7ccb8840fa7cb043a15a7afdc97b39ff4212d4a3e75d681d2f1f

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bd63eeee06905dfba7ea146187ac59a35bbc97b879d92518aea3c1382833e2ad
MD5 db7191ca343fa2a4468371621da482d9
BLAKE2b-256 47941ca954d253d3866410ddb4702f87088651992f3112e7975463db938ad44e

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 66d1218c8a2291a30263c3928fe14c92d4a606e36674a4d64b645a40265e2add
MD5 bbec648d5126af3dcd24fc4b3576c173
BLAKE2b-256 fe714fec8fc4b11b6d36a53f012812bf704a58371d61d29edeac235e6cee984a

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c790f7769907320e7a77871e17ea8ecbfc70493f461ae83a75bea0d1fd556bd
MD5 4de23bd5bba3dd57e4ade90b595dc51f
BLAKE2b-256 e5782d7c0eaf508b004138d8a5b162de8d9cc1b6227221d559f10d61be49b309

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9a1024e52768b06070b03e9de028a694e6089c0568d425d1f36b62b8f0f2473
MD5 262b003003871cbdde82a4361af14d8a
BLAKE2b-256 6086da00e9a4bbd4b50222c0772b4f297ed80b41ea8d58a2ef913bab479618e0

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f8fc4ae03f5ba75fb1c346509ea4a46620f1be0b5f0066aad5c53acbbb18f30
MD5 fb30fb2705120699b0f820f994e1766e
BLAKE2b-256 2c618e9f7069790b07ffaad74eab03161026eb3448c90e8fb3f29c55c2ff34e4

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13f920b64b88e35a5b86cd76268b8f09de6e31355183065607db6dd3502c3c61
MD5 2b3d2e467c8c08dbc4d56e82e05a9b74
BLAKE2b-256 76d3fc872119e4a9ddb0bed05732a449e8327de96d00ab4ef694fd0069689fa0

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b19e96d84331e8d7947bde0e5184ff9b5f51c0b64a8b8fe4f447076a5c3187b8
MD5 b5df9db850a0fc2a877495072ce8db43
BLAKE2b-256 9f70672c49e3e1244556ba142f0945e08606c3c22479123c1dc1f35455d500b8

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pyroaring-0.4.5-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 163.2 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyroaring-0.4.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7a74aa7029c7b9497751e4407f8b9a5b6650706e8a300aed03848cee849aad96
MD5 72796515237a6c33c1ea2d92de962b5c
BLAKE2b-256 cd8a98db06ffb8c3c9b31be0b12e9dbade59ed50af5adb6574489ea4d171bdfb

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyroaring-0.4.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 201.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyroaring-0.4.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 07fa96e481f66251a0fb7e2bdb2981417c61c47befb1cccc4e6d67eaaa8acb55
MD5 b3d42d9432abb7a798c9bf8196bc5da8
BLAKE2b-256 1deef3661d6f2d9ef57f70871c7dcdfc17705598f333cdbc43e52f865216a4be

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 451e6daabd8377c8e13d42aff3bb27d5e3bb0f721dc00e4a224222564f808f22
MD5 5dbf0e95d1f989198aaebdbdea7f6286
BLAKE2b-256 59b561a91bc5360cca95f1a854e57272c95322853df739b60aceb1614f8cd748

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 677d2693e1895dcebdf9a1e09605f3710f7595db7d46c25d539671d85ed2870d
MD5 42639c54d1e4f3286f1657ee07e10751
BLAKE2b-256 0c2446590b91a0411cb37b2c886320516048775ad7cf23e3aeba7786ca2c234d

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d969fc3d9d0f06205e3fd9c3ccb3e8ea3c18ad81af1e1dfc2203423becef76c
MD5 3181b910e71cf7facfe314b58f2cf3af
BLAKE2b-256 c49a2fce8a4f37d140b3823fe3d56f1eab7e4200068a50c08581b64866b3088b

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d8c5df8881b4c9fb91d5dae135168748feb2d9f29d686d7b0f6af51dc36d3f1
MD5 cee938e8d9128ac8b389fd1c13d56e98
BLAKE2b-256 04b3feea0541e3db257be20f8cdac7a5bb3a16050467bd2039c35759893112a6

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4fae09a39eafa0b3938cdd3bebac06ac69cbee3f93bc2bbd8fc26e3b5273680
MD5 45cbf8c1063b4e5060d8b69893e57ccf
BLAKE2b-256 2ef28723c0f27bd29f4025d918431c604265022e7ea047d9bae71fa9a3a20af7

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d38838674082703b21d1dbe257e3b65fafff919ccb17c2776ead19b3f1216afa
MD5 8b628ca76ec29f74aefb78ad4b401c0d
BLAKE2b-256 d2b30a8a993d32b4547237d60b9002d58363ce65bcb4bca94cebc967693a22d6

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6214761d54a8b7770c7288c053922e401a50dcfdf828041c828ab567d7323c37
MD5 862605f945ad97716c3f3a6e0ab39e4c
BLAKE2b-256 aa68511b2f11dcec29f16749cb45bd9a767c7b7fb120470efafd161fe256f3b0

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: pyroaring-0.4.5-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 163.1 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyroaring-0.4.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 b34c4e4036163b686ad3714787a78cc2c52ce0cbf4e6e84d5a8b5d1476ed3159
MD5 f6b8570e073a378b15c2636a83f77054
BLAKE2b-256 6fcbb4e43457d3c79c4f5e841d47f956460ef6a58aeeeec266f7e8a7758ffccd

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyroaring-0.4.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 200.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyroaring-0.4.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 56bad90b0293753c9c759c1076c4cac5f8cfabe53c33ed20b28be8f54521f87d
MD5 d9bc9f4d425fe245edf8e4026a805e13
BLAKE2b-256 59a2628c68205297b4e39c382a28b11b8a7371a92fdebdb8e9afe4f71f642651

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 84abbacf91f40fe12f5832544c3647174dce77ed6be48c11bf7724042f1c3a68
MD5 0df3d53e691b40862529f2827ce6c30b
BLAKE2b-256 62ab4eaffe965b0f4073d1b5bcc0ef52e5b87b8c9df9edf55f07874267d44cc4

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3ece8d6c3d10df00e1ab8fca1c6b189faab01854d11c89a413d88fb61e0a5f57
MD5 db183069cc992531557d327a897360bc
BLAKE2b-256 49602d414494e42d6edb93318f7b55190533a55cdbd803f82b1fde993b9ee0aa

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 202d199b7f6eba6d9d23b1b7ee867da26217e4b61ceb2aff7d212fd45d535bd2
MD5 c6fab00d6a3669a7bc0705784c5ab805
BLAKE2b-256 0b725fd46bc09ff7b3a14b7f8eb34401343e36e539ba7536dcad44c6f516415c

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2e50e67e834630a76614289dfcf6023ace0ef3be2c6284c0f49b3168dc4e004
MD5 52c173f6e2aa908e98a5ccce5c698127
BLAKE2b-256 90dd7d36e05c009fe83c01c266908ced8104f3ca445cb0643e78f40209b10bfd

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d7e8a6dad2b3061c9f4c7b2c4f41fad12dd66f4e4b8094bf7e8e97a7b2e1a4f
MD5 6e75f9595127a3ddf1323d019fc77ddd
BLAKE2b-256 b72aa7bcbcb2e942add2f1ec6963dba05be17efe8b544016e730149cb3aba559

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b25d4bcb3c3312039bc3892945954c34d759d22bf04398c092a7c6bfb0619b88
MD5 a4ffe62ad4ff5f1e791e524db422c16e
BLAKE2b-256 52e25f71a94f1f0a664ed50dfdd4ae6880e86275d4d799f4041e276f395cf879

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2d50a048ecc4b2f3b1885a86c02c16de21b3e3e6e699d9d49a22ee26e0ae8697
MD5 c3fb57b5ffbb8849a7922be4cfa643e3
BLAKE2b-256 ae9c479aad314be44f663efb4dc073b1ab0082ff5fe5814896d5d72f3e05de01

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: pyroaring-0.4.5-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 163.4 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyroaring-0.4.5-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 2cbb9a213a84f4657dc79915d065abbf2727d99dedc7e9991f7cce33ac5b0ebf
MD5 cb62c53b1c174b2b2c08aa0da5d397f5
BLAKE2b-256 26da630e92d45acc778f6eb3dccd9fee22621d428e99394d8ea881bbca93875d

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyroaring-0.4.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 200.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyroaring-0.4.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 37b05d30e41bf5d4546a4ac3a27e219a182bb5775d26036fa95f0416871bc516
MD5 42810b5e45459298dc40dbd6c66eb15a
BLAKE2b-256 704550a5d87e585ef811095c9d30e8c19371a17b3e70bcf72b8345efcc6c2c17

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 854e0d95eade4d985631aff8bb0c962722ce778d9d43b87d0102507b6c75b488
MD5 d72dbba16e171f001c8a4ff5a99276d8
BLAKE2b-256 817c57aa03b812ba6f19bb915016d5aecde32b71263770d9cbd4750dcdb2810c

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5d62b0614585ad463acead85e30c2864684ae5900c9c7cedb2744b9ccac16620
MD5 46bb822201b3c12a7030cb88af1cd44e
BLAKE2b-256 35c8f6e14c0960112d8eb87b8ecded874ea7ff8c236088d78b2e1fff312eaa6e

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0695522d3eb82c7d38a2dca25ad465928644afe18f9956554441abdbac45f36e
MD5 20cd8693baca1eee478413da05c4b80f
BLAKE2b-256 741a5480d0e858d482d3b6a26eb0a1743d3a391ef0a4425716091e2561ccf036

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc94a72141f3c161150ae4be3dcfac20167cc9165f2dc3526126c07674b6b598
MD5 f4138bef89a43c64048603cc38805921
BLAKE2b-256 6035e32392e00e3e3f326f529e9bcf11320a37e6ebca080147bc7cd15cfc46bc

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d85320c2b26f2631adc6ace9f857adb3b160c1e589d2145efe80724450cff0db
MD5 675e016c98eaed13ffb1dd567777fe7a
BLAKE2b-256 d244a247e4ae8e0ceb7fbf13800113c812968e3c734bdd37241d72080b16e3c1

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a4194799f016144ed1beca3e9fc2ed9e1fc61b69a20097492c9bdf3592290cb0
MD5 91dd3c5687f7e5e204e46c889a897f36
BLAKE2b-256 d84d201b831d4e185c0db853c2e4fc4400eb0a7a991943cdec28875616848fa4

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f4dbb384b2a0ca9969f5872bc4b02fd770700e7ab3f085dac9501d8b52c36488
MD5 6bba32adb264a58b3faf7e7f52c0a712
BLAKE2b-256 ea2578bc06c35eca1980e17d3aa823748b88dd11ae93ed6b8ae37d9d64dfc256

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyroaring-0.4.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 200.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyroaring-0.4.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 04aa6c336cbb7bbbfbbd349aaceabcdc5f96c58ca7fd8747a7d0fbdb4d78563d
MD5 47489d9d96d8ca06eb41bb7fbcae31fc
BLAKE2b-256 6a3f28c6908fe3a13e82a673ca544c5eb5ffad4aef91145864be8d6e548fb87e

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 74dcecb7e32c0cc18291c75e325e86688afdfd01a16b8d0b7148e7c8b18f6e47
MD5 dfd86610683525d813af6b412cfbaa68
BLAKE2b-256 45a772eb5ac8ab6faa867cbcf29a8d559e23537e0ae65db1520e3d63758b6bc7

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c5cd4e44cbc9bc73a8e4e3d9c5e76d18f3e8f10bfdaf0426254449dd667f656f
MD5 ff8042251b06f9e3bb0860ae3cc16cb8
BLAKE2b-256 a56607c4895bd6dabf4e3a4b201150d5e6f1ac07feafdddd660e5def07061fc8

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50ea8a899b833a20263ca268d97d26c24c81c4bdf8df184d45f470c12cc6e868
MD5 90f2737e1a3f3463b104c0cb0dbf0c91
BLAKE2b-256 aa40192416a6682c0f2e8a165e2122530810a156b4bfd943e94dc70028ba2224

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 263c1d5732978e801e71d11bd8229bbd8da78766d0d8679e01d9b5b1fbc17f41
MD5 cf74040dcf3542876a8c2f2167e3ff52
BLAKE2b-256 ec7657b134db51372acbb71cd9ff8e8ed52eb308ccdfe1fc839c4ec2780d53e4

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdbebc604239abd0feb5fefaeea7464d8499f32f16f42905c3c9492805a9a5b3
MD5 d15984a433ca7a18756ba45d5314db42
BLAKE2b-256 766f48d8680d832bf31a4d5cfb59eaeaf930afad8dc0e3cd5f1571de6ad11b26

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca63031497d9f75c96189c46548abed31bb7b53fc39d43cb1b109e269e82d42f
MD5 a6c6fd686bd8eb90cfe3a61f8b3112b3
BLAKE2b-256 f131ec90c4f851d740d2ba5a5495d19ec74caa0db28bd6381f03652bfe2338ec

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 814ef39bee5c953d69d1bf9fa71978a19b6dd68e2512d0f8f6328e32580928b5
MD5 27a7e49f86273db8d1e69ebc3d279758
BLAKE2b-256 d741ebafa222f68ac1ea2b5e220a4468ad2bd6e431d73171d7b8bb1ad64a702f

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp37-cp37m-win_amd64.whl.

File metadata

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

File hashes

Hashes for pyroaring-0.4.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3d5f6465ca0239d9f050bc2213f7e4a7a86649a37cc2abf5cf1b10f5aa9b15da
MD5 b9ec6ecfa6b00d3e67101248eed79f00
BLAKE2b-256 3502578e75ffb4937766f1ad34f521a58156f8c8f69ea9adc0c4f6f94182ca3a

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 56e4a936c8a5784b76163921b9d8411be6d0a7db9564593651626fae10c5910c
MD5 d50ae51da86c3f6889ed42d9396fd8b3
BLAKE2b-256 124219a126a66b8a81579f3f8f4e322617aa23d19cbf28b663a28c245dddb432

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a757d8347a179f186804fda7dd2b918175818a03e6aebbb50e1427c92d3f8dfb
MD5 63aca8a9098187e59269112698d566bf
BLAKE2b-256 e1e075644cdac091d6db3173d27c87fed8903d930efc1ae4456355e76fe8e32a

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 601b77fa43b9f3aceb10040e8d57ee2190dc671ce22b32d054bebe4579bfa68c
MD5 706f1961be31f63771cb5514c78566fc
BLAKE2b-256 9097e2d034652f6182894636e09b49603dc3ab932baa2e47c15fe195cf00ff71

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ccf7116927ea58c756a477b894ed259afdc4e68baa072ed47897a694fdf73003
MD5 f29b21c4572ecd9df0bcdc4563662e12
BLAKE2b-256 24bf5aba9b015bed3d773d42152ca8254e18c959662f2ab37afd3f331d5a9935

See more details on using hashes here.

File details

Details for the file pyroaring-0.4.5-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-0.4.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 334c2cff2c1b9ca2472037f2d4917dc60544dd768dc4832a33d013e15d949d98
MD5 23f38a1a7954ffeef1f72f796fea3921
BLAKE2b-256 9a95b3e59faf2b830c598ef1398176217fbd05e87e41da2bd98c9013c1fe6436

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