Skip to main content

Library for handling efficiently sorted integer sets.

Project description

Documentation Status

An efficient and light-weight ordered set of 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])

The class BitMap is for 32 bit integers, it supports values from 0 to 2**32-1 (included).

For larger numbers, you can use the class BitMap64 that supports values from 0 to 2**64-1 (included).

Installation from Pypi

Supported systems: Linux, MacOS or Windows, Python 3.8 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 pytest
# This will test in three ways: via installation from source,
# via cython directly, and creation of a wheel
python -m pytest 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 the library sortedcontainers.

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 AMD Ryzen 7 5700X

  • CPython version 3.11.2

  • gcc version 12.2.0

  • Cython version 3.0.2

  • sortedcontainers version 2.4.0

  • pyroaring commit b54769b

operation

pyroaring (32 bits)

pyroaring (64 bits)

set

sortedcontainers

range constructor

3.03e-04

3.15e-04

4.09e-02

8.54e-02

ordered list constructor

2.17e-02

3.06e-02

8.21e-02

2.67e-01

list constructor

7.23e-02

6.38e-02

5.65e-02

2.34e-01

ordered array constructor

4.50e-03

nan

6.53e-02

1.75e-01

array constructor

6.51e-02

nan

8.98e-02

2.40e-01

element addition

4.33e-07

2.19e-07

2.13e-07

3.82e-07

element removal

2.69e-07

1.67e-07

2.33e-07

2.83e-07

membership test

1.59e-07

1.33e-07

1.42e-07

3.22e-07

union

1.07e-04

1.04e-04

1.06e-01

5.69e-01

intersection

6.00e-04

6.26e-04

4.66e-02

1.03e-01

difference

7.24e-05

8.34e-05

7.94e-02

2.34e-01

symmetric diference

8.32e-05

1.03e-04

1.31e-01

4.19e-01

equality test

3.52e-05

3.21e-05

3.18e-02

3.29e-02

subset test

4.15e-05

4.41e-05

3.20e-02

3.20e-02

conversion to list

2.92e-02

3.08e-02

3.16e-02

3.53e-02

pickle dump & load

1.64e-04

1.76e-04

1.37e-01

3.53e-01

“naive” conversion to array

2.46e-02

2.57e-02

6.49e-02

5.73e-02

“optimized” conversion to array

8.73e-04

1.45e-03

nan

nan

selection

8.83e-07

2.49e-06

nan

8.18e-06

contiguous slice

3.31e-03

6.49e-03

nan

4.32e-03

slice

1.58e-03

2.74e-03

nan

1.29e-01

small slice

6.62e-05

1.15e-04

nan

5.43e-03

Note: the timings are missing for pyroaring 64 bits with the array constructor. For simplicity reasons the Benchmark builds an array of 32 bit integers, which is not compatible with BitMap64.

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

Uploaded Source

Built Distributions

pyroaring-1.0.2-cp313-cp313-win_arm64.whl (236.8 kB view details)

Uploaded CPython 3.13Windows ARM64

pyroaring-1.0.2-cp313-cp313-win_amd64.whl (282.0 kB view details)

Uploaded CPython 3.13Windows x86-64

pyroaring-1.0.2-cp313-cp313-win32.whl (226.6 kB view details)

Uploaded CPython 3.13Windows x86

pyroaring-1.0.2-cp313-cp313-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyroaring-1.0.2-cp313-cp313-musllinux_1_2_i686.whl (3.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyroaring-1.0.2-cp313-cp313-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyroaring-1.0.2-cp313-cp313-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyroaring-1.0.2-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

pyroaring-1.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyroaring-1.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyroaring-1.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

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

pyroaring-1.0.2-cp313-cp313-macosx_11_0_arm64.whl (336.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyroaring-1.0.2-cp313-cp313-macosx_10_13_x86_64.whl (398.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyroaring-1.0.2-cp313-cp313-macosx_10_13_universal2.whl (727.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

pyroaring-1.0.2-cp312-cp312-win_arm64.whl (236.8 kB view details)

Uploaded CPython 3.12Windows ARM64

pyroaring-1.0.2-cp312-cp312-win_amd64.whl (282.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pyroaring-1.0.2-cp312-cp312-win32.whl (226.8 kB view details)

Uploaded CPython 3.12Windows x86

pyroaring-1.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyroaring-1.0.2-cp312-cp312-musllinux_1_2_i686.whl (3.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyroaring-1.0.2-cp312-cp312-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyroaring-1.0.2-cp312-cp312-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyroaring-1.0.2-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

pyroaring-1.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyroaring-1.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyroaring-1.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

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

pyroaring-1.0.2-cp312-cp312-macosx_11_0_arm64.whl (337.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyroaring-1.0.2-cp312-cp312-macosx_10_13_x86_64.whl (399.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyroaring-1.0.2-cp312-cp312-macosx_10_13_universal2.whl (730.3 kB view details)

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

pyroaring-1.0.2-cp311-cp311-win_arm64.whl (238.3 kB view details)

Uploaded CPython 3.11Windows ARM64

pyroaring-1.0.2-cp311-cp311-win_amd64.whl (280.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pyroaring-1.0.2-cp311-cp311-win32.whl (226.7 kB view details)

Uploaded CPython 3.11Windows x86

pyroaring-1.0.2-cp311-cp311-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyroaring-1.0.2-cp311-cp311-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyroaring-1.0.2-cp311-cp311-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyroaring-1.0.2-cp311-cp311-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyroaring-1.0.2-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

pyroaring-1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyroaring-1.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyroaring-1.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

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

pyroaring-1.0.2-cp311-cp311-macosx_11_0_arm64.whl (335.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyroaring-1.0.2-cp311-cp311-macosx_10_9_x86_64.whl (393.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyroaring-1.0.2-cp311-cp311-macosx_10_9_universal2.whl (721.8 kB view details)

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

pyroaring-1.0.2-cp310-cp310-win_arm64.whl (237.3 kB view details)

Uploaded CPython 3.10Windows ARM64

pyroaring-1.0.2-cp310-cp310-win_amd64.whl (277.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pyroaring-1.0.2-cp310-cp310-win32.whl (226.7 kB view details)

Uploaded CPython 3.10Windows x86

pyroaring-1.0.2-cp310-cp310-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyroaring-1.0.2-cp310-cp310-musllinux_1_2_i686.whl (3.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyroaring-1.0.2-cp310-cp310-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pyroaring-1.0.2-cp310-cp310-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyroaring-1.0.2-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

pyroaring-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyroaring-1.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyroaring-1.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

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

pyroaring-1.0.2-cp310-cp310-macosx_11_0_arm64.whl (334.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyroaring-1.0.2-cp310-cp310-macosx_10_9_x86_64.whl (391.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyroaring-1.0.2-cp310-cp310-macosx_10_9_universal2.whl (718.9 kB view details)

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

pyroaring-1.0.2-cp39-cp39-win_arm64.whl (237.5 kB view details)

Uploaded CPython 3.9Windows ARM64

pyroaring-1.0.2-cp39-cp39-win_amd64.whl (277.6 kB view details)

Uploaded CPython 3.9Windows x86-64

pyroaring-1.0.2-cp39-cp39-win32.whl (226.8 kB view details)

Uploaded CPython 3.9Windows x86

pyroaring-1.0.2-cp39-cp39-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyroaring-1.0.2-cp39-cp39-musllinux_1_2_i686.whl (3.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pyroaring-1.0.2-cp39-cp39-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pyroaring-1.0.2-cp39-cp39-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyroaring-1.0.2-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

pyroaring-1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyroaring-1.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyroaring-1.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

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

pyroaring-1.0.2-cp39-cp39-macosx_11_0_arm64.whl (334.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyroaring-1.0.2-cp39-cp39-macosx_10_9_x86_64.whl (391.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyroaring-1.0.2-cp39-cp39-macosx_10_9_universal2.whl (719.6 kB view details)

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

pyroaring-1.0.2-cp38-cp38-win_amd64.whl (278.7 kB view details)

Uploaded CPython 3.8Windows x86-64

pyroaring-1.0.2-cp38-cp38-win32.whl (227.7 kB view details)

Uploaded CPython 3.8Windows x86

pyroaring-1.0.2-cp38-cp38-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyroaring-1.0.2-cp38-cp38-musllinux_1_2_i686.whl (3.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pyroaring-1.0.2-cp38-cp38-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pyroaring-1.0.2-cp38-cp38-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyroaring-1.0.2-cp38-cp38-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

pyroaring-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyroaring-1.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyroaring-1.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

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

pyroaring-1.0.2-cp38-cp38-macosx_11_0_arm64.whl (333.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyroaring-1.0.2-cp38-cp38-macosx_10_9_x86_64.whl (391.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pyroaring-1.0.2-cp38-cp38-macosx_10_9_universal2.whl (718.4 kB view details)

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

File details

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

File metadata

  • Download URL: pyroaring-1.0.2.tar.gz
  • Upload date:
  • Size: 188.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2.tar.gz
Algorithm Hash digest
SHA256 aa4a1de882bf4a245c7c0dee8594b898e76501bc32afc0cc9ff4138784462839
MD5 347f15ecca297a15c17441e715f9bce0
BLAKE2b-256 2ab25e0ab902f3899ba8a3e2bc3d901a9c66a902d5e5344c46900165ce506636

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pyroaring-1.0.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 236.8 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3912f2ea93b27b57e914b7d082a6849ff9048644c803de8bb85d7a15cdb420bd
MD5 2880ef219581b4fa6218bf6f00e3c9c4
BLAKE2b-256 4d2c5de12c135920e6098e3bd6400ef398e87fe0b81c0cdc2e092e3d5050a60c

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyroaring-1.0.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 282.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a73ce95a6205f2b341147619790ecc75e96a9ca265f9797fc816324df6c26c38
MD5 2f9551af711835febeb831a072af4220
BLAKE2b-256 efbf5a4283dfbadd873c24475b146911e6f5629f3b5cc0d49a72fce3b143995a

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyroaring-1.0.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 226.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 41e96f770240d773c13137250dd0c51ab898c435d48d77eae37853939a9bb402
MD5 ed365567248a195b88fff73d4c365de4
BLAKE2b-256 1a2fc3bb6a1ba74b2496c2c97c7b2628efef22b73badd77265fdac509ad53aed

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25b223c71a34e0bf4fe004312723918941337ae4770ec22e1ae43050fc45422f
MD5 cbefd228c134485709368e143ee04c93
BLAKE2b-256 addb6b2e7ab6c45102601cc5ea8a806bcc1cd23c6c07d9c9e9900e91f35d4d3f

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1744c415b75e4cd3b3d26c2d7a2cda6c8f3e6a713e42751189adfe1d41954e7
MD5 7b2c317df6da53bf2ea45926da6e342b
BLAKE2b-256 94449455f728271958e160ca1724750885261cadbb73a029186ac2c7aef0880d

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2bc091dab0811359f4fbabbf771485b12e2086c5bd2f27570cca8860e56e3837
MD5 cf1f369b5cb6479742b0d755d70a1bf1
BLAKE2b-256 ea706a604abefd891ad1667950aa9a899b51a12ac61a51dca7938b7b95420339

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83d92fdf6c236e539fe3258375fd407b822dd7207cbed56a520d364b7cf3a516
MD5 74134807a919e54cff889d71d8d795a5
BLAKE2b-256 d5150e1953ea05db6251ffca0e6ec2311b3e3d0a87c47efc9e180d6565478a2d

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cf4822333443ff7cdedce36da8365a442ad40e8c42fb1b835a589892cb08de65
MD5 bc8c4628f8aabbf71e96aff0c41c4fac
BLAKE2b-256 7a6e8953623b551ed46d9fed825f6164e0f3f78763f40c930c08890e2a91ba22

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f9b1a1d309b29de793e2958c1e9808218c449a7516f682627a18ea5782b0e2a
MD5 24bf1061d34318c43a8474be300f8f98
BLAKE2b-256 7aa8a56beb6a860f6a25d5c225bdafd06b26e12e0eddc250cbdf36c3016fd9eb

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b482f64a08bd23e3ff7a025fd431da048d4ee7b0dd6e75e83182b1ff418008b
MD5 ff4ba7063019f67a87eb522f796ed936
BLAKE2b-256 2fd6dc6615e8104d03031595863788206e01dda8287b4c7b208ba4085ecbd8b7

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3695317b9f8a95ced9ab2426fcae59f23b540c8d812178e607e090f5546f2359
MD5 0186e0fed9036ff611fb061c0d54b1ab
BLAKE2b-256 03b705d49c5a4f45bfc163b6b91a1d17875da10e4a250860cf4e27faabddb51d

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc40e70fe9917f32776f741ce93acf1de8897260cadf27397252f1e4125a91da
MD5 180ce0a10048bd1ef87b737916128a47
BLAKE2b-256 1a1fb2d49562990fe162ca303ad9765f890e176e3ee95c273729e3756802b4a9

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 987fc92e443dfcea57b31bd7f0b06e1d46b7361c7d1b3adf5c9d49614195e7ff
MD5 f51a6e198c0057efd2a8672e0044a352
BLAKE2b-256 be2e0001d7caf3b0b02cfcf956a67dfdb1e9f3dacc943b63b6e773c4a7254331

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f14a300354b2c23de16cc421dc54af4987cb3da4d90df9eddf3bb081a664093d
MD5 33ea166f63bbb20dd80edf6c7a517f56
BLAKE2b-256 c9f4e0db58f062971393dea656515b0d5b35d52eb31486d179747a00768c479a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 236.8 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 51ed8a5677c409c4b896e931b4baaa0f95f6a4c8fe56b6dc0e7f8f6728487465
MD5 38dfb4721522de272a6a9258a4615839
BLAKE2b-256 34ceb6d257945213990016d4692ea57c55e8f2f1258e3bf9db7b4e8f87945a16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 282.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 906f07c97487fd0319aa36e36f8ed54b9fdf275297b394cf36803592527b186c
MD5 69d2b3fe9165a3bb03d7d34bd79b0b3d
BLAKE2b-256 d9c20b1fd43748163c155a262c31c6b0467604efd00b331a855a54a8619aafd9

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyroaring-1.0.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 226.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5a5facb5d5c529f4b6967ce75f76806bf8161694dc3d5d4c0f9de3cf614b7735
MD5 485e1f36abee9eb9aaf5a03676723889
BLAKE2b-256 23793ff3e39afa9829024392de626acf64178f118c1be581220c0ef486d4abd5

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7d74f12761ee614ebd6337641100c370bc982099fbb109cdd9b23b40ae96273
MD5 4b1966e06419734459a34bb61b205bce
BLAKE2b-256 5218da6c6a0310c4ba7e9acea91f10fd0a77fc072117a9975048cf87e00744c6

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04e6b56384aab6ca2f37e4d868b49689a0e9cf4198d8fdb2f6475a8f13d937ba
MD5 dfbdb0c9e377b2c2e49278706f25010e
BLAKE2b-256 07cb1ad8c19660443875f1e8be6cef981b2f17385270ccf85b678073acbe129d

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 decefea17be7ec3cfe461022ebb73d369f0fe07d39ba813d168267ff82a3f748
MD5 2d48ee1d9ee34dba5dd40520bacb129e
BLAKE2b-256 5f0e1ea50782e2ae8d330d67b373c331fdd90949d2e8f464f2115a89ead68944

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ce11a6d57d6d89759eeb87a727d1657cb1f03ced71d186812799e07879c568e
MD5 9ce44011f569e5216f36aef713babfdb
BLAKE2b-256 588bd7036366ec86c73a66eefd1b63888d2995b1a41386020c7c3cfe3d4e5d55

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 96291b1f4f77ca13ceb3716605bcb63ae91e17c9539bd07fc77509226a7e8d1f
MD5 9e8ebe56ff02620c7d215744f95a8563
BLAKE2b-256 6a2eac3402868f9b643ff06d2e2c6807534f2ee906de4cd6ca3ad42ac3a9610b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47fe576f01b806c5677e08cc60d3765f872f7aeef9204914dacb3ba72067d4b0
MD5 7b1ff9e9a9daea4ac978bbb5ccae7d56
BLAKE2b-256 decda3a704bb38bf9ebcc6e01c3d7025df68f2d952196e71d143e3ea98845a36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67c0782b46e552c71d2598f50cad326446364fab02ec51b37ec26037d78263bc
MD5 903484a5f871cb5aee79938da8b56329
BLAKE2b-256 0b8bf8367f926b17a8191242a3c637685ede4dac4c7140743c676fd77eb87e9b

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bbf02fc3873efefe37429a91d1c384c6c259b3e5b5f4220c9436550b5c480aa3
MD5 ae034eda4c3351ba6e39d0e9faf7b6e4
BLAKE2b-256 29d1e94cd7a422bb0449f818839186e08cc59e6081f3009377511d10dadb9c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 617b1affe6a09025a0207f6fa1d6f2266ef540c5ab9ab29287311f35825ae63a
MD5 b56dc1ea7e21ff32f9e06e82dc42fb3e
BLAKE2b-256 589069ba1f2b17ef91a038e718712cae047acbf7c1951b4075f586cf87b1f940

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 986a1245b22294ce5ba1b6f4299aea9a410d534718fce0fc6af6fe2251bb8981
MD5 43f98f9f53b7d2211930b40f08028ec6
BLAKE2b-256 0e3e089a07b922890b511a3b5342f126bb5437b3000c01818e23437ccec45621

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d9ec623abbfcf50771e460f202d41700bdfb7dc28c6f1b0be0843dd8b61d50ac
MD5 c757f4967ac8f6134fb31e244a81c4b6
BLAKE2b-256 44a667c4df4c6e39c73d71f8941c94d6199b359c5d97fc261b879ac8263d4a15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 238.3 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b78bfbc2c56c78cd054b3df22215e7d51144ca906e3f115e22b8eade72c7f079
MD5 bd82094a0cea498fa11f26887fc3d2ff
BLAKE2b-256 2ae6f1bbe3701266495a52d34d4960a3ab43bf3f612c7883e8e93a8d4c082981

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 280.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bd31fece30655ad55b2ae2e0b1f397880c78a1052013a577ca4eafbcba5c1afa
MD5 982c702580c4765b30670b7543ec0ab8
BLAKE2b-256 122d83e9fcec4d29bc52b8320cd15cb5177dfca5db432dbd6856b8831a8e664e

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyroaring-1.0.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 226.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 35267f9439cccc6023a71aa929df38cda1f4146392595dc35f2ddc1263bbd56e
MD5 602a441a3e04a8d09fc0649cb950a699
BLAKE2b-256 a51bc15e4fab03616518f2949312eaa8b238e42017f787027767bd9cace3bb9c

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 613fe8ade494a94de4e4c4226c7b526b2be802bb4280a983d6ec68b903130f2d
MD5 4d0f7cffe3e5b67a0b52a9ac0950a596
BLAKE2b-256 53063f074aca7fcf9c302845c93e229790f8e75a0c17150f34479e1294d20841

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e87aca7ddde5eb729ff4513e44a6c3a1d844d8a50b67b21dd98420a0f47b53d3
MD5 f3f1a1b1c5ea38e0a639558997d63d98
BLAKE2b-256 bec8fd351dd7dfbe25cf2253f7c52d61dcf811d3f7e52fd496c3ef2a9e6db3ac

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 08a127d1a740326a9954d00c5efec56bff31695b05a798a8dcd55d17f880ca15
MD5 309781d8277c6442db97d456ae19f64c
BLAKE2b-256 5ff6ed8337ac195a42a2a5d2839a54ee3b1bdb3bb43cbb27db50a925d56a8407

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7dbdd3f4b3efc0c6dcac67aced444ca3a13e2346ace9172f1f5a74a78128777c
MD5 06587997fa19776d1c76c1883b30f1ec
BLAKE2b-256 997ee2290666cdd59fcae15963c5a27496a7f339e13a7e3b3e1d999fa4a91e7f

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 32901ca5c5c8bc6a1aa90b006d9c75f918639f639c615bf12ba9b9d41b008d01
MD5 420c4f1f64ac91af2126d4eb0dc51a9a
BLAKE2b-256 47d489ff993e8a19a9c5c1eb11d6cb2e3d08b521ae32f14382d428a509563afb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8de91fe9bacbae5eb3dbabddc03145da1ce3ce64f421262abe9ea5e99043274
MD5 e21f07d81a88253757092cc23366f6ba
BLAKE2b-256 b8a440519e934a1653d03d83e2cf01ecc7063ded02ae799265574c9117e6ca5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01cca981c5a05a4c05f8e1d5908fc50e143d9d3f68dc516525ab2e1e8eefacb6
MD5 d5f7e872f7b8996c2c2b69231b238512
BLAKE2b-256 d6b2d8cf8b2b336e03898c4616731cdf229b063692c8be2b33a51ad3fb5a7058

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c56152bee9d6e2aef7535ed3874155709c73ccd4860921072a0655488abb9db8
MD5 7906ff5b40faf7c6b0758a04c092ae2f
BLAKE2b-256 888a14d0d46ff1ef9c754e2f5fcdc80fa82f7ef97d79513c1533bfe7e9744d80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76af7c7c72a61be1ed08062c8f7aed8020879ada0e77d2bcee6fb40657c32399
MD5 537a13815790414128d12a5002bb086f
BLAKE2b-256 8de1d0d3ed23eeb545fd259eae81d8528c7547a1eaeefa595e9dd6d8b932b37a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10e82996c70ed344773582be70b34e5b20078626fd2da5063ab396f12f2764ba
MD5 aa2aa65904d31e6e9ec96c9eeced4e5a
BLAKE2b-256 0d1a574b38d8204f9d7a51bf685e2df0fecbc86b90bdddbeb6fe52a8921f42e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 85a79f88d94d7586921472720c9a9fcedc5db79bff310413be049c2ca3afb349
MD5 93b94e0a78e1bb22157a8b37230eea4d
BLAKE2b-256 4979eb0431d277f761b2e7d5eda04e7fab50a8179c9f4b073f9ee379c47e2f82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 237.3 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 108a808a07a7bb773205ab75f7cc22f235f8dffeea85c4bd28b6417fe5480a30
MD5 2f7476639b7494723cac04c5b033ec6a
BLAKE2b-256 4e910d3bd28061abd06a9eead21c7ada0eadc2429a309fa969621a8eeebaa9de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 277.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e85e3bc78fce1aa6a83cfc3a67cd36bf02c9261e4f426b6040aa0bd97a89820d
MD5 b7b5b6cf23f01bf230d47a1ace87ce15
BLAKE2b-256 568717569a86f6826dac0b712ba4a7562961fa8101fcef9126d9140330a6fa17

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyroaring-1.0.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 226.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 703f377d0c50d7bfce0734b1256140cffaa666d9b0621fe74708b1141e8a85a7
MD5 c06f12204be7e20b12053065c3b3ecc5
BLAKE2b-256 f14011a17a377f98ef4eb5c6305604365300b9a3793157e7b225e0f030be7919

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c55caa802473ce136cbbe2f51506d5046c8b71d8e265b8fb0df011f4534af44
MD5 55c0b89f118cf8de7771981abfed5c94
BLAKE2b-256 fbed45de038c62a5c202744c191ac9976c59042cef69c8c93ab8a640b765a68e

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d32be36debb293e8e6bfc8e51f257a1e95b9bc820e0a91196d87cfebe0575af6
MD5 05dce72210bd8abd6b16a1c3b759a578
BLAKE2b-256 25a8cd399225148125d5a041c3609977919405702486a7f1d80b1c1db7c88f93

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4c4865df32b4c980fb977140a09077d59a4f2cc86f47524c5d76b64650fec0de
MD5 ccbfaf350e6cce815f9b85882e5af469
BLAKE2b-256 118e2c18b851abe6bc41344005ce75bef3214f03b7c0f4d6244c50f7484f3327

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 986c5c7bd2831bd5ffa7cb14aa7f20cbf9c762619bcf6a5a4e141d14ba4aa732
MD5 a3a7bffa0f55830b194335ed547f31c7
BLAKE2b-256 a3a39ac251f3c31800549b12b178c1283616c920f3cc8026a0d1437e69631af9

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4302399ea8b8fcfa54e5a847d8089001f3b3c2c294b5902598e1db30a749c74e
MD5 99e2ef709c064a290e3c3b018b317f51
BLAKE2b-256 88c40a83027690d7671b9e7ab03d86cdcebd665e54cd25f0b813847b12b5bde3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0f55f288c72b5326a3a64fb7104e92c71501490ab4bc5ec48f54379e3f7e655
MD5 59b3d002235e5b42bba9160d22c6ef37
BLAKE2b-256 49ad970cca5d06898c84a4dbe9412d8a0b69c29d7bf35d1b5b9ab48f7699f427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39ae367d11eb6cdf5b1afd939ebc063f5cabf0120efee794f96289eaa4962789
MD5 d86b23acb764ad5e1723bfed2b5f8c70
BLAKE2b-256 4f921a1392a2a3a2301e336862da4479a4a07a9b48073737a837d9eae5cdc095

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 25f4f98d99eb1fdd20300ea45241f6304f90d55820d1b3e70c73a09d4ef1bffc
MD5 d6858cbd276b6aa8c105dbb955b0777f
BLAKE2b-256 ab25c05a0754d036e2f87e11d7c1a8d6d4b5f85a8665c0c450589ec80698c2e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1387a4dd91374864775fe864c058821535a7ebfa96e208622a21db962d66af15
MD5 a25cb49af531e7b0a8606544be0779e4
BLAKE2b-256 6f47004a51076995d7c44e45d3d78afc4a49a6b6f10dbbac66eae0a27ee35ee0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e6e8de37d22e7aa9a482db7153b9e2a2c966e1951ecf5aaa08cec3264ee773f9
MD5 38738898ee5699416b7e6a12487f75e3
BLAKE2b-256 a9b4462a9ada263f4d03d2d8f58e826d266c6049aa25ef36e32f2b3b0899b644

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 20967e63a7d17758e290f8121239707d086b7720de57d04844e1b0aa977786cb
MD5 c70e6e6ea49429f3acef0b2e6e2e2ca7
BLAKE2b-256 e9870c573ffa56daf50df13d579a9f840b1ca8d23c272b6099baf6c85379df50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.2-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 237.5 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 5da91936b591db7bf2165f56e47fe0696595a2c9e30c9399df814cfeb6b92c82
MD5 53e80121feb2743bf836318ea99c99b7
BLAKE2b-256 a27a2cf81428dc5a525f70b91e84bc0791831a466e968de3f3d3eb96e297912a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 277.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bc905d10d7a0c269dc93f6526925deb402069c9d7d265210bb54ffd9650ab5b9
MD5 58ac028d69b9ebcbeb86ad2564b7564c
BLAKE2b-256 37f0368f6b19f8db47d401ba4b4a94f1eb6e26090d3202ca0e8093c076faa9aa

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyroaring-1.0.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 226.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 08e73bcd138e7db6ed6dcceaab608db635604d94f012d11639dcea27e7048f4d
MD5 a5d94cb61a651b43351d222cce97b6c2
BLAKE2b-256 d4183a8d40ef7bdffcb0aa462daa9a6a27c732e614e20fa73bd80411bb73ddb9

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f705b6126e906bf3ee43c64dcba06bde6b13854528dd5ca302cfdc388a52b31c
MD5 981b2ceb44d3ced2d8466a98dc1ec3b7
BLAKE2b-256 7d697e1b7edd328f1f2a0fdf12253645c19d1add054f9d4f5a8c977ca8565c98

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36a2564957d17ad4c6caa62e4bb19e519d038daf5b6b7c5ef274c0d1283c71fc
MD5 8e66dc4e1fc489978c9b4e531b1649a0
BLAKE2b-256 05ffdf6a4b4858e868e1e86631be20d857dd49bfbfea90a6a102ea7bd078cf8b

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 48b9ac5f5b557698c53030e271b4a135090846e32b17bb414077d888aa666199
MD5 0317e2170479ca97b45d34dd26d45eee
BLAKE2b-256 21ae0a3c2c2a1c4d5a41b4a907f5837de44c5b3017e05307c44627148225e5ce

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78ff45b76e858db13d76b13487865575cabff85ec777f3d95c3ff75395237d81
MD5 4b50c76c47555b68353e9893c96eb7d0
BLAKE2b-256 e0dabd328b3f62ca1c6732ae70dc95f830d428579a469f03141b42052edec8f1

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a88d5215576a59acad827b1cc5f575cad832dc61626a0c26507d459a3099a266
MD5 376d1b577bfaf609c9794417bf51a83e
BLAKE2b-256 473e87e0274fc0415e735089934ff07e008087f56e13bdaa6f1630e1d145a4da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aeb3276817f2f29ed6712c1b5c68e80f334ad435245d19c79cbade8f848a4c04
MD5 4204f358a53f7b587ef09b5e891c37ca
BLAKE2b-256 f2862a1c3250f231a2bee408c5f5f9f1f9983c27ff50b5e1ee8d335e647e8ec9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c057963f8b257a1f3dcf4b8bf3272bf241eaac2b7414b17ec3b7eef73b03097
MD5 e4758083c9461ea724bfb3dfa6c8670c
BLAKE2b-256 54829abb48eb0925a20acbd6444523b10dfed3d8dd8b49a95b1b6d7f52d6a058

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f8fa9b97c5b64f13586646ca999d67a6d7064fff79a6ad044316a835e55aedb
MD5 154b41c10bfe736e8c72f25e080dfa8e
BLAKE2b-256 75bcdaf95eaf1f0c983eddaa7519dcecd3c0fd0555632ef825adc740448a4f76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db99ede0f2292d3df142b69b87f11fd7b0beacab11ed104fff1e0db87ca52477
MD5 fd12a9c0d13c52f89677a2c38f21e3d6
BLAKE2b-256 f547f0eaa04831b4a174ccae17c43e093e57e10671bd37ed224a3cfbfe6ca217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 226dd9e63eb22fa2ad045461b79781bb6d4682e43853007cc54db197ad8e05f5
MD5 bd272bdaec1804d4b624d42aa936439b
BLAKE2b-256 a31af2a9937c55c9b39d29911c07b31212e93d9d4c87d9828edcc9f6d6f06519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 171bd25428136eb5d379f21185788d32d86c0bbb2a789e112ecadb80067e4918
MD5 314830446912a62cfb176d775d1eef3f
BLAKE2b-256 7caf4f3b84c5a77db44ce153098472d0d0ebe7ee076bb084865df0b64812bae0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 278.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c2d5528e9b8162a313bac99bd920ff45b53a87faaea20edf62e903dcb5373d4f
MD5 ea2533988da741f7951d8e532cc511f4
BLAKE2b-256 3bbe4f13bbca0cebde3a85d29ce631ed81f1ea7449f1da133646a43173f8c35d

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyroaring-1.0.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 227.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for pyroaring-1.0.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2957fd752d3b39408ff197fe94c3d1d20e5c7725b9f117c97efe9be7d0dffe1e
MD5 84dfacd26f6b39c2a4ff76ddbb5a9a8e
BLAKE2b-256 85e6d4e37512050f0ba773523a16eefd5a2b92e72ca1932651cc6a999e703650

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1768e31604e145f045d4e0a223fd7c8a5ebf6419e67581141ed673a93980cd3b
MD5 8d24dfee848c54843968758aa02c1eb9
BLAKE2b-256 30beff02687ab52dbbdc44d87377f70f75e4708fa2a5cac558ac7d3c45a442dc

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 35218c167bbd8546119da0eea18dd3297c3aa44b3ec26093a41b44fb853fbb75
MD5 42739560b134efa4bd458b5797b9d6a1
BLAKE2b-256 2d09ed9cea66170ea3a01163133e1da12fc5a1c874dbb8e89428966ab91d9936

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3a4f7f3819780d86335bdbc39221b5e62cd1c224cddd4e8ba224085295ddbb9a
MD5 02abee27159ebc889529d7ad859549b9
BLAKE2b-256 9158e63a66f7c33257331f34fb41311275fe5c5a9890029e869d6f355daf5be1

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73bb24c851e1860b455421dff2b4373573ebcef62369d82e49485a1d326e0a2c
MD5 c763f0fa859b60c38543c02c1044e839
BLAKE2b-256 1a4e166f066815ed4e13ebc080e5d7d4e75108e7beea7a1ba5a6266120d0e214

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp38-cp38-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp38-cp38-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 45aa198a2ae487b6c50447215525be8b226ed088f652f6593835a46dba7251e7
MD5 160f6b80994805742dda438d3483db07
BLAKE2b-256 bf8616bf74b8a7b89bb495752d737e1cf152dfee291f80b870d90f8170fa05b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7db9b2fa9ed2f4310f6c2c46f6b56755f15029a37964664ec02fa76156895798
MD5 90630c601be604dec87ba0ac0e5ddd03
BLAKE2b-256 259022fdb9c7ceefefdf30c9bba0891174af85d1b388312fce74d04c76197b50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b72de42162bccb12bda41a9b9e68323fbfa7850973f83d1f85480dc9a57b9a3
MD5 cf7c69378ec5945ab68373ab31e1fdfd
BLAKE2b-256 08e53f52b78be2eb3db54e36ea6d3336d6869f5a5498cfbc792b681fa1e484ba

See more details on using hashes here.

File details

Details for the file pyroaring-1.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eddbad0004c27c47f5f088150f18824bff70d67e4868db74665acf47e1f1be96
MD5 8c45cb04788b93f98663048f989a6421
BLAKE2b-256 462c8a80be78bf64537d597066b5153c0762247dda6b9e051a1a1e9e3929d610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0dda1ca2f5419c06f01a99faf4a5962bf74fe18e6b21bf563e704f00a087a2a
MD5 821f417560553bdf9e44e4c06c5d8d64
BLAKE2b-256 f49f0550e06eb3f3b52397b6196e99688f846572d0214f3d47e285b79ca1b36e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1d60ac82595cf2f0dfce8513cc91838c589bcf6959f5ab7e1801e6efcc4d79f9
MD5 cd433e6a7f95457a601538d95c28367f
BLAKE2b-256 a1412a124966a2262f5e2c1672cc4242206af2dbc4a2d8d01e79ef55c8f1217e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 44d28fe7cd95be08172e66ec75e87ffae1e77c3e4ddb0dbf4a45b7a593590a77
MD5 50b2697d0b05d3545acb2404ac89642e
BLAKE2b-256 fdff5de58e22165ea44626f8dba52dd1c004ccc24e0e6dc6f7c7ce238288d6ae

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