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

Uploaded Source

Built Distributions

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

pyroaring-1.0.3-cp313-cp313-win_arm64.whl (218.8 kB view details)

Uploaded CPython 3.13Windows ARM64

pyroaring-1.0.3-cp313-cp313-win_amd64.whl (260.3 kB view details)

Uploaded CPython 3.13Windows x86-64

pyroaring-1.0.3-cp313-cp313-win32.whl (205.2 kB view details)

Uploaded CPython 3.13Windows x86

pyroaring-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyroaring-1.0.3-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.3-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.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (313.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyroaring-1.0.3-cp313-cp313-macosx_10_13_x86_64.whl (373.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyroaring-1.0.3-cp313-cp313-macosx_10_13_universal2.whl (678.8 kB view details)

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

pyroaring-1.0.3-cp312-cp312-win_arm64.whl (219.0 kB view details)

Uploaded CPython 3.12Windows ARM64

pyroaring-1.0.3-cp312-cp312-win_amd64.whl (260.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pyroaring-1.0.3-cp312-cp312-win32.whl (205.1 kB view details)

Uploaded CPython 3.12Windows x86

pyroaring-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyroaring-1.0.3-cp312-cp312-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyroaring-1.0.3-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.3-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.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (314.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyroaring-1.0.3-cp312-cp312-macosx_10_13_x86_64.whl (375.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyroaring-1.0.3-cp312-cp312-macosx_10_13_universal2.whl (681.1 kB view details)

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

pyroaring-1.0.3-cp311-cp311-win_arm64.whl (219.6 kB view details)

Uploaded CPython 3.11Windows ARM64

pyroaring-1.0.3-cp311-cp311-win_amd64.whl (254.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pyroaring-1.0.3-cp311-cp311-win32.whl (204.2 kB view details)

Uploaded CPython 3.11Windows x86

pyroaring-1.0.3-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.3-cp311-cp311-musllinux_1_2_i686.whl (3.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyroaring-1.0.3-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.3-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.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (314.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyroaring-1.0.3-cp311-cp311-macosx_10_9_x86_64.whl (369.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyroaring-1.0.3-cp311-cp311-macosx_10_9_universal2.whl (675.9 kB view details)

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

pyroaring-1.0.3-cp310-cp310-win_arm64.whl (219.3 kB view details)

Uploaded CPython 3.10Windows ARM64

pyroaring-1.0.3-cp310-cp310-win_amd64.whl (253.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pyroaring-1.0.3-cp310-cp310-win32.whl (205.0 kB view details)

Uploaded CPython 3.10Windows x86

pyroaring-1.0.3-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.3-cp310-cp310-musllinux_1_2_i686.whl (3.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyroaring-1.0.3-cp310-cp310-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyroaring-1.0.3-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.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyroaring-1.0.3-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.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (311.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyroaring-1.0.3-cp310-cp310-macosx_10_9_x86_64.whl (367.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyroaring-1.0.3-cp310-cp310-macosx_10_9_universal2.whl (670.4 kB view details)

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

pyroaring-1.0.3-cp39-cp39-win_arm64.whl (219.7 kB view details)

Uploaded CPython 3.9Windows ARM64

pyroaring-1.0.3-cp39-cp39-win_amd64.whl (254.1 kB view details)

Uploaded CPython 3.9Windows x86-64

pyroaring-1.0.3-cp39-cp39-win32.whl (205.2 kB view details)

Uploaded CPython 3.9Windows x86

pyroaring-1.0.3-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.3-cp39-cp39-musllinux_1_2_i686.whl (3.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pyroaring-1.0.3-cp39-cp39-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyroaring-1.0.3-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.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyroaring-1.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyroaring-1.0.3-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.3-cp39-cp39-macosx_11_0_arm64.whl (311.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyroaring-1.0.3-cp39-cp39-macosx_10_9_x86_64.whl (367.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyroaring-1.0.3-cp39-cp39-macosx_10_9_universal2.whl (671.1 kB view details)

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

pyroaring-1.0.3-cp38-cp38-win_amd64.whl (255.9 kB view details)

Uploaded CPython 3.8Windows x86-64

pyroaring-1.0.3-cp38-cp38-win32.whl (207.4 kB view details)

Uploaded CPython 3.8Windows x86

pyroaring-1.0.3-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.3-cp38-cp38-musllinux_1_2_i686.whl (3.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyroaring-1.0.3-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.3-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.3-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.3-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.3-cp38-cp38-macosx_11_0_arm64.whl (317.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyroaring-1.0.3-cp38-cp38-macosx_10_9_x86_64.whl (374.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pyroaring-1.0.3-cp38-cp38-macosx_10_9_universal2.whl (684.4 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3.tar.gz
Algorithm Hash digest
SHA256 cd7392d1c010c9e41c11c62cd0610c8852e7e9698b1f7f6c2fcdefe50e7ef6da
MD5 3441c87a658325a6c640b91e038cd707
BLAKE2b-256 0fe4975f0fa77fc3590820b4a3ac49704644b389795409bc12eb91729f845812

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9c0c856e8aa5606e8aed5f30201286e404fdc9093f81fefe82d2e79e67472bb2
MD5 c557d6a62ecc8e80798b066048f4d761
BLAKE2b-256 77968dde074f1ad2a1c3d2091b22de80d1b3007824e649e06eeeebded83f4d48

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 428c3bb384fe4c483feb5cf7aa3aef1621fb0a5c4f3d391da67b2c4a43f08a10
MD5 13547349d016ebfe6407aa27a6b32132
BLAKE2b-256 c4923600486936eebab747ae1462d231d7f87d234da24a04e82e1915c00f4427

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f758c681e63ffe74b20423695e71f0410920f41b075cee679ffb5bc2bf38440b
MD5 9a43eb8e90a381c27e7c5a6f160fd416
BLAKE2b-256 59b1d47c5ec2b2580d0b94f42575be8f49907a0f4aa396fdc18660f3b5060d54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82ca5be174b85c40be7b00bc6bf39b2931a1b4a465f3af17ec6b9c48e9aa6fe0
MD5 0e8ad420e072ca90b085e86c49b9947a
BLAKE2b-256 616dc867625549df0dc9ad675424ecf989fa2f08f0571bd46dfc4f7218737dd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b12ef7f992ba7be865f91c7c098fd8ac6c413563aaa14d5b1e2bcb8cb43a4614
MD5 ba3810097f68c234012791345f7d7e90
BLAKE2b-256 75648d91f1b85b42925af632fc2c1047bb314be622dce890a4181a0a8d6e498d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a967e9eddb9485cbdd95d6371e3dada67880844d836c0283d3b11efe9225d1b7
MD5 e1875348c07908317341a486d09b41a4
BLAKE2b-256 243c419e25c51843dd40975ae37d67dea4f2f256554b5bec32237f607ec8ef21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6eb98d2cacfc6d51c6a69893f04075e07b3df761eac71ba162c43b9b4c4452ad
MD5 c9c29ceb9edde60790628d6d1204c8a5
BLAKE2b-256 e5ff55a18d0e7e0dc4cd9f43988b746e788234a8d660fa17367c5ed9fa799348

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 dba4e4700030182a981a3c887aa73887697145fc9ffb192f908aa59b718fbbdd
MD5 895d07c9aa48bc953f22fb20fa6b27a0
BLAKE2b-256 99e38a70c5a5f7821c63709e2769aeccda8ae87a192198374bc475cbee543a22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7f68dfcf8d01177267f4bc06c4960fe8e39577470d1b52c9af8b61a72ca8767
MD5 ae0eb4c6269ed57cc8f0eeaf26b86d01
BLAKE2b-256 4774da9b8ad2ca9ce6af1377f2cffdad6582a51a5f5df4f26df5c41810c9de5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b16c2a2791a5a09c4b59c0e1069ac1c877d0df25cae3155579c7eac8844676e
MD5 675049bbf3e360d637f4c94eb0a51d1f
BLAKE2b-256 f964c7fe510523445f27e2cb04de6ffd3137f9d72db438b62db2bfa3dafcf4fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e26dd1dc1edba02288902914bdb559e53e346e9155defa43c31fcab831b55342
MD5 74cfe3aeb26a4f6cfd7ad26e5a91f178
BLAKE2b-256 044c08159a07c3723a2775064887543766b6115b4975e7baaa4d51e5580701a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b744746ba5da27fad760067f12633f5d384db6a1e65648d00244ceacbbd87731
MD5 0a31985368fd6ae0c1bd59f595e2ed82
BLAKE2b-256 8673fc406a67cd49e1707d1c3d08214458959dd579eff88c28587b356dfa068b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ba5909b4c66bb85cab345e2f3a87e5ce671509c94b8c9823d8db64e107cbe854
MD5 884ceb0c2ae9b03b0b47d78a128e9a9b
BLAKE2b-256 705ecff22be3a76a80024bdf00a9decdffedc6e80f037328a58b58c1b521442d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 20bc947054b197d1baa76cd05d70b8e04f95b82e698266e2f8f2f4b36d764477
MD5 2dd4aa475751ec695c0e3bc9ade54fda
BLAKE2b-256 1f9597142ee32587ddda9e2cd614b865eeb5c0ee91006a51928f4074cd6e8e5f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e6bcf838564c21bab8fe6c2748b4990d4cd90612d8c470c04889def7bb5114ea
MD5 0b30e81cd6d05ffb4e71bb8f72412f5f
BLAKE2b-256 573366ee872079c9c47512d6e17d374bcad8d91350c24dc20fbe678c34b33745

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3b217c4b3ad953b4c759a0d2f9bd95316f0c345b9f7adb49e6ded7a1f5106bd4
MD5 c3767541fb8a5071f40e8eae95b1ba81
BLAKE2b-256 c8e1b71fef6a73efb50110d33d714235ff7059f4ebae98dc474b6549b322f48f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fbbdc44c51a0a3efd7be3dbe04466278ce098fcd101aa1905849319042159770
MD5 dc9b33719c121965e8a484ac18005214
BLAKE2b-256 8f89d55b0ed3e098ef89c421b43b748afe3d90eb250cab50b9e53e3a3449ac58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f888447bf22dde7759108bfe6dfbeb6bbb61b14948de9c4cb6843c4dd57e2215
MD5 98f28a5409000751174eb8d10fc2921c
BLAKE2b-256 ca94e6ed1f682d850e039c71b2032bacdefc5082dc809796cf34b9e6f24c604d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d16ae185c72dc64f76335dbe53e53a892e78115adc92194957d1b7ef74d230b9
MD5 25bbcf6a5412dc2b2d4240ccdbc3d5f7
BLAKE2b-256 1372b8a99ba138eebd8ff9bf8d15f3942e9e43e8e45723e2e6b7b09e542b7448

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1f414343b4ed0756734328cdf2a91022fc54503769e3f8d79bd0b672ea815a16
MD5 01562f588308de16fd370c1f31e31480
BLAKE2b-256 7cfdd7773a2adf91f45d8924197954c66b1694325afd2f27e02edaac07338402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34a781f1f9766897f63ef18be129827340ae37764015b83fdcff1efb9e29136d
MD5 4ed5a15a8cc3533675fe5f1b65de2a67
BLAKE2b-256 f59e684ea0568ce7d30fc4e01ad1c666e9ce1a5b1702fa630231f4f6bdb96539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 53be988fc86698d56c11049bfe5113a2f6990adb1fa2782b29636509808b6aa7
MD5 b06e3ca11826ddb56c9c6b0513de793a
BLAKE2b-256 5d89e953cae181ba4c7523334855a1ca0ae8eeea3cee8d7cd39c56bd99709d3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d31f4c1c906f1af14ce61a3959d04a14a64c594f8a768399146a45bbd341f21f
MD5 0be1a8472b25761886e2c2a0c524041f
BLAKE2b-256 4f33f32d00ca105b66303deab43d027c3574c8ade8525dac0e5b50a9fb4d1b76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2b2eb8bd1c35c772994889be9f7dda09477475d7aa1e2af9ab4ef18619326f6
MD5 6a4e181a9c63de730c46f1ca84a1ee79
BLAKE2b-256 869eb00c38a7e62a73e152055f593595c37152e61fc2896fd11538a7c71fbe4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7df84d223424523b19a23781f4246cc247fd6d821e1bc0853c2f25669136f7d0
MD5 571344043258fcc32a36dde0e7acbe96
BLAKE2b-256 fadb65d4be532e68b62a84a9c89b24d0a1394f452f484fa29392142d9a3b9c48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9459f27498f97d08031a34a5ead230b77eb0ab3cc3d85b7f54faa2fd548acd6
MD5 f91a94c2eafa13b96d9906d4dc54a0a5
BLAKE2b-256 bf0310dc93f83a5453eb40a69c79106a8385b40aa12cf4531ca72bd9d7f45cb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ebaffe846cf4ba4f00ce6b8a9f39613f24e2d09447e77be4fa6e898bc36451b6
MD5 981f4fba1f8e7316d7464d66bc27b375
BLAKE2b-256 23dd78f59d361bd9ebf8de3660408b0c48664ade0a057ebcf4b207d99ac1a698

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 add3e4c78eb590a76526ecce8d1566eecdd5822e351c36b3697997f4a80ed808
MD5 6931d82f2a39a37406d06d2a54dd6b10
BLAKE2b-256 dd09a5376d55672e0535019ba1469888909d0046cea0cfb969a4aa1f99caaf22

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 535d8deccbd8db2c6bf38629243e9646756905574a742b2a72ff51d6461d616c
MD5 2e508735c0ee8fa6e75b14b0507b42f5
BLAKE2b-256 d6e8e2b78e595b5a82a6014af327614756a55f17ec4120a2ab197f1762641316

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c28750148ef579a7447a8cb60b39e5943e03f8c29bce8f2788728f6f23d1887a
MD5 53bd18f25a5a9d6f2498896971e96e26
BLAKE2b-256 c6e536bf3039733b8e00732892c9334b2f5309f38e72af0b3b40b8729b5857a3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d54024459ace600f1d1ffbc6dc3c60eb47cca3b678701f06148f59e10f6f8d7b
MD5 5c72794fa93dcab1eeaa29d75abc07c6
BLAKE2b-256 9adef55a1093acb16d25ff9811546823e59078e4a3e56d2eb0ff5d10f696933d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c17d4ec53b5b6b333d9a9515051213a691293ada785dc8c025d3641482597ed3
MD5 8ac1778bf58a8ff7edd17d1aeb5e0e75
BLAKE2b-256 07eaad79073cc5d8dcca35d1a955bb886d96905e9dacc58d1971fda012a5ad18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25a83ec6bac3106568bd3fdd316f0fee52aa0be8c72da565ad02b10ae7905924
MD5 2178af4a52936ec14671e8fcdc400295
BLAKE2b-256 d291b2340193825fa2431cf735f0ecb23206fb31f386fecca38336935a294513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f34b44b3ec3df97b978799f2901fefb2a48d367496fd1cde3cc5fe8b3bc13510
MD5 3615916dac64e17a795b4d78aa3462a8
BLAKE2b-256 bc284b2277982302b5b406998064ca1eaef1a79e4ea87185f511e33e7a7e3511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9232f3f606315d59049c128154100fd05008d5c5c211e48b21848cd41ee64d26
MD5 31cc617611b82cbcecf980664e89aa40
BLAKE2b-256 d1d2d2d9790c373f6438d4d0958bc4c79f3dc77826d8553743ff3f64acdc9ab3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 57fd5b80dacb8e888402b6b7508a734c6a527063e4e24e882ff2e0fd90721ada
MD5 ea8786a2e316c65da46e5d9a7c4fbcf3
BLAKE2b-256 a7f84d4340971cbc1379f987c847080bcb7f9765a57e122f392c3a3485c9587e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d815f624e0285db3669f673d1725cb754b120ec70d0032d7c7166103a96c96d
MD5 f675ca7b5e0b5fc76a28c933e0105f3c
BLAKE2b-256 ea829f1a85ba33e3d89b9cdb8183fb2fd2f25720d10742dd8827508ccccc13ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 678d31fc24e82945a1bfb14816c77823983382ffea76985d494782aa2f058427
MD5 8512948e6415b83fc05b5c7a7c529f82
BLAKE2b-256 ed3cf6534844b02e2505ccdc9aae461c9838ab96f72b5688c045448761735512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ab26a7a45a0bb46c00394d1a60a9f2d57c220f84586e30d59b39784b0f94aee6
MD5 fb7c2aaac025d21adf34c0ffaf3b7e85
BLAKE2b-256 c658d14cc561685e4c224af26b4fdb4f6c7e643294ac5a4b29f178b5cbb71af1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 684fb8dffe19bdb7f91897c65eac6eee23b1e46043c47eb24288f28a1170fe04
MD5 9ac2d70694026538425ede7974e5d58b
BLAKE2b-256 35aada882011045ddacffe818a4fcbdd7e609a15f9c83d536222ec5b17af4aa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ebab073db620f26f0ba11e13fa2f35e3b1298209fba47b6bc8cb6f0e2c9627f9
MD5 f73d6184a6191f808ee3878e1df201f3
BLAKE2b-256 da06dd8a9a87b90c4560f8384ab1dbafcd40c2a16f6777a07334a8e341bd7383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 755cdac1f9a1b7b5c621e570d4f6dbcf3b8e4a1e35a66f976104ecb35dce4ed2
MD5 2064fe3363608a43d014c944b8d81a1c
BLAKE2b-256 39ed5e555dd99b12318ea1c7666b773fc4f097aeb609eeb1c1b3da519d445f71

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 3043ff5c85375310ca3cd3e01944e03026e0ec07885e52dfabcfcd9dc303867f
MD5 bdd2c6b60cbdc3aa745746f31b3b762f
BLAKE2b-256 6420b421100bd14b6a1074945af1418671630e1b8c4996ef000ac4e363785ead

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 051bd9a66ce855a1143faa2b879ea6c6ca2905209e172ce9eedf79834897c730
MD5 0771cf3deb45e1848cac3b76a5049ee7
BLAKE2b-256 6db91d4859c74d05f72b86dc0b308e6221e814a178459301cea9bcd084b4a92b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5a183f5ec069757fe5b60e37f7c6fa8a53178eacf0d76601b739e2890edee036
MD5 f2f17eeda0f8a2c8e02f741fe92b519c
BLAKE2b-256 51b92ac712ea90bd1e0d7e49e5e26c0c5aad1d77f21cf520a7edf46a477f5217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddc80bfcd313c7c524a2742d263e73cae088b6a611b77dcc46fa90c306f6dace
MD5 5d8e9099810e513fec86cf63a870c67f
BLAKE2b-256 e4c81b425503141681db94941d9d3f41333bbd61975c3fc62d95122c372da85a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f109be8af937e85c52cb920d3fd120db52b172f59460852d2e3d2e3d13a4f52a
MD5 5a8b3aa5e38bd4816fe2c95e82ad9112
BLAKE2b-256 d0875f2f590973d454e79ee8729aca888f9bb2d6018f7c9816bf66000cbc5e88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0caa10f20329d09233fac6550b2adce4d9f173f748a9a9a5ea3b7033827dfe2d
MD5 4420fefef52f76fdbc9697d83d395de6
BLAKE2b-256 b2697bc7070b35f72706e3870b5856e73656b9065bedae90268da5d77be00b15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6721036afa31c07bdcbb4fcafa166660cf9c2eac695dcd495f8778549fa55899
MD5 862f743520baa8dd51ce37c0e7847533
BLAKE2b-256 e94851af418321cda2a1cfa64a48397ea0b73da74afe5c53a862525476d8a42c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 96a51e96f8f473381615f0f852f7238ad0a47f28e4a35e9f082468c5cfe4e9c3
MD5 44e8407041a341c687df068595fe7bbf
BLAKE2b-256 78c66560c61d2f5c30fbb8f7b9a1c7d02068e78a7e8cd336eb294ec70896a80a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f0cbc766df2a24e28f23d69b66bbec64e691799219fd82c2f2236f03fc88e2e
MD5 75aed3e2ffeca12d711761a5a5194000
BLAKE2b-256 2b0540c0b37d78b16842c924b87b4fa491f4b20ed0e40c6255c872df45314247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd18446832ea04a7d33bd6b78270b0be14eabcda5937af3428d6cb3d2bf98e54
MD5 f766763c5c51a594a869856d964ddb66
BLAKE2b-256 6b7113ff623f3bba340ea7cc841883d7a0eaba1bec7e2d4e0d6759b89a4ce754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 654af38b1f1c9bdc27b4f6d331fc5d91599df96e72a6df1886f4d95eea60ab29
MD5 2edd7427e7e187efdf838ad96d1a5dfc
BLAKE2b-256 339e0c91d4dbc4ec7bea9dcd3c203cfb8d96ed9df3c46981c0b22e9f17e98296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c7fb6ddf6ef31148f0939bc5c26b681d63df301ee1e372525012dd7bfe4a30a
MD5 476429b69a670ae883b7856aa5fd7f83
BLAKE2b-256 39e4ab74296c3aac8f3ceb800354c2f811de2c4c518b3ca3a7a28e0599740cff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc329c62e504f2531c4008240f31736bcd2dee4339071f1eac0648068e6d17fa
MD5 5dbd13a9a922abf997054771422f27a3
BLAKE2b-256 2ffad933448844925728990e2256bbfa4f18cc3956d43d548270317128038015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c10e4cfbe203a578c78808406af491e3615d5e46cf69a7709050243346cd68bc
MD5 9fb2e9c1986a14d89a5fda0f85d15fcd
BLAKE2b-256 3f87f19328d35f29b1d634f8f2127941927b37c6b68890912a4668e1a272d54d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 1ed2e9c7af46052466b5fa0392fe540331474718d97b9756cefa23233bfdb3ea
MD5 faa5801caf57cb053652a1fa6c3e2f38
BLAKE2b-256 39f65a50162e3aabfca78b9ecfb8a5fd54efe0cdb8cae4364566c76270a11ad1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a86b88adbe0531b75f94f87279a6d4ee68e63335e29bbdab4400a05704fc2587
MD5 689d9f7c90b59731331512fe8ff708cf
BLAKE2b-256 eb8e1b1a183e9caec7079343fd9b52cb3f3655e92f7e2383b5a713e11a236c19

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a7a7d14822c64841ae64e98309697e1631ebadba55ded33daa7cd16d1b487d11
MD5 a8033090cf7229e43055f9e95b33be15
BLAKE2b-256 2e3f099832741b09d95bff732fdecf60d32379cf875c47c35ca9411d7e857d5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c656d62d0cf96ede0edc4e7d392889238777bdf88b32afd5d51c3cab016c29a0
MD5 c56c372700eafb9092d519a5fa367d1b
BLAKE2b-256 d9dd4addaae811223d06886ccfd3565cbd0069ec4bf94aed31ecdc1cb4c45e12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8e996939de01f448eb9448d91b47ab60bff0555c2a80d5c12a8405814072cd35
MD5 7935611cab883f4f2217de49d7d71269
BLAKE2b-256 6e70f7864e5c8e8aa71bec6f9f031a817a12ec1cbdb8f0d0e56b8b8f0a7ece12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bb7f2561e3ec26c3c869458431cbcba6b83f7e925b024460c136dbb5fadf3b31
MD5 6769800d0838d747395ca7202e8c8dbe
BLAKE2b-256 a329ed5be0d26cedc5e8c648a1c7ff687fa677699ce1c88bc79db8ed29ddbdc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e195636034a0b62ec0e5325ed2f610f39cc8955ace3f47a5bc7f484159f02341
MD5 43068d65e5ea0d72fe3df5df8dc3491f
BLAKE2b-256 8eaaa348d22558cc419788bd4bf5e23d3a01951c87d4e0a71e50e8d818da3c59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8d5df95d9511bc83048da9348c7ab1c20f97ff4d95faf27ee1fdf2e8a96e200e
MD5 2605c96d1b49253ebab8050c445e9cc6
BLAKE2b-256 6d7273420fc84bb71239f8d6c1be583d0e178847bd673f873a88f4734633369d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c8fb6b0ad0e8db1b9559b2da180b103b48adddf0e4f24404269e2a3b5db268d
MD5 683eaafde03fd1045e0573df01ebd88e
BLAKE2b-256 24e593e89d1b8d52c840bf0b10ef0adf4099f059e51eb6d3c7496ad827192a9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3035db9459bd8635a0145b4a9e3102869d621cb0b3648051115f06d31ffd1976
MD5 3582138312dea84a53e4c2e9930258b9
BLAKE2b-256 2baab11c13da5b5c61487fcc1abadc4457a12de8e7125aec956ba71486e25b0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 65d2d81e5aed7698fab23058db70fb2b65fad221090be037a0af498569109915
MD5 0edfa593981da8d9c630fef9d3e29883
BLAKE2b-256 8bc035479042a045e84331292a44edc2ae6b8cc974b51292e9e27aa072600c17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 531b6ae56989b61742dde1b64fedc5537acc046cf04a333548322366c1bf3922
MD5 cb58990d8970177ad74ad50d823a8637
BLAKE2b-256 e08273e4182cc620ee66802726997a07696c5c37f38604af9ec1a2170d7d74fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ce202452de2b58bffa3eb02e27c681eefcfb54e27f8ef85b5c93ebaada50f3f3
MD5 8e9b9f98b2da38562d19816e6a787882
BLAKE2b-256 78a8ccc2110a02c18a68202b186fd4ad688bf279dd805f17b74b8f3f76855724

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d46eb5db78b673d8d8ca83651a1cce1e15eec5a922f2951b1f61014463b72af5
MD5 3a2655a4d9f3f0efbeb1ec724d907d0d
BLAKE2b-256 686c094ec30f0ef9564ec03785b9eb85026087cdcd77dc8d6d6613735fbe7c16

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 47d985293f861df1f2b03b41cef4fd3249c1c9608081750bcf3153051c2312d0
MD5 42269c9fb552093d231a6250425ac8dd
BLAKE2b-256 7dcd520df9c731b25a727e3945c2c109e1d140d717627a34d348a8de153afcdb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 54cb0c2bddd330e22099773c4681aca90847265afe56a9201a92c1a758494261
MD5 1d0da60fa6655266c29d04dd8235c11d
BLAKE2b-256 36afb78594ea68c72400c2c9aaa1b6b1f92b755e0e3466029ad1469cb931d9cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5a1db84e0952805223a7bf77eae58384b700a6b9affc53fb9772dddf868c712
MD5 ec0b6cea423aa5cd3704e2be1d90a8e7
BLAKE2b-256 f2634ce175c6d747863217f59fb88a752b77f245aec7d7ea03d131d1116b34a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd7f9e5b7366b8f9bafca2a0fcf83fa534a00cc12d4ca01e301d8662bcdb805c
MD5 847937587f2213c974adc99e848d30e3
BLAKE2b-256 88b7ab1888da64536924ba890c525a1d814808fcbcb1e1be82bdd204019b68e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7a1b1c82d2da0bedc7c22d4047bd62544ef0e25c6be86ccf4b9d1ccc38876ee8
MD5 ad1bc9d1947310a377a7d801ebedf823
BLAKE2b-256 f303fd127099a3795f4908f5318169d9ee7056feb5fd808a610058e73b6e624c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03e063329481396cbb70f1ce8b8ca0f01d74a45ee9d908b6645b0282b23832b0
MD5 bab83481174beee0d3151c8105e19c75
BLAKE2b-256 68d15ebcc93751a9518ba2ffe0b895eee8c76e7a62c4c026853bdcdfbbdb63bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp38-cp38-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 defc508ef7acaf58d07e603c55feda6742c4034f5262cfd616f92cc3adbc2815
MD5 23b342ab07b6df380a3eff9dfbbb233e
BLAKE2b-256 06e8f54ced357e4307498218b23164333ab54bc65a356f5f573291e10f20bf58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8038f7dd25eb83c277b8e0ea14c5e61f085cc76bd0c6b9f6679f1770e33541ec
MD5 437b1eac7a2767e0ce49ed4bce47f281
BLAKE2b-256 cc42595145a9e202da3ae9fef8369e5ab48fc354e871b4b2e57919f1473477d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c84d5b17ef628c3956d9a79c2f78c5bea7dda6f7aeb01f34671034d2650b9efb
MD5 1fc38b839b586f4b1ae9cda1d632196a
BLAKE2b-256 a31f41f176fbdfc04c15465aa5566a29c87024b24ed04a9d2bf4db92d61f073a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dd0831326971b0ffa08ccce79abe7c2450d5d9254804d855e23a8ba31f70351a
MD5 3820148fa8ef531acb1d1edc8319fda0
BLAKE2b-256 71671516515b2d83ed57621dfd6b0e5c29416ba298db043b93ee2e5cf8f01372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d064aea3827e63eb60294ae3e6623e29613f5c8844869646d06f3735a425dd9
MD5 7b5f53af18e8fb8fd349d493d533d002
BLAKE2b-256 7d30be8dba589942f4da0ec207ed8210f1c399b979462a070bdd7af8cfe79f2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 054eb6ef04ff9d2ed3ddd18ae21e5e51e02d0f8cdd7e5cb948648f77ddb04ea2
MD5 1ee2e574fa0d9e0efc895a51bd4dc525
BLAKE2b-256 921643bc5f431d19e1d7f4203109a6039cd0bc7c53bcfe573d8464f76036675c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6321a95b5b2ba69aa32e920dd1aa7f8fc4fac55b75981978aa4f2378724dee27
MD5 48a1cae9e550dc2933e09af2e39a0446
BLAKE2b-256 ccbc873638a8073aa2a34c87ecc56b779dca5070ae2ced3907ded053dea4424b

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