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 with pip

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

It is recommended to install pyroaring in a virtual environment to avoid conflicts with system packages.

Create a virtual environment:

python -m venv venv

Activate the virtual environment:

source venv/bin/activate  # On Windows: venv\Scripts\activate

Then install pyroaring:

pip install pyroaring

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 python by python3.

Installation with uv

If you are using uv to manage your project’s dependencies, you can add pyroaring as follows:

uv add pyroaring

This will add pyroaring to your project’s dependencies in pyproject.toml and install it.

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 with pip

If you want to compile (and install) pyroaring by yourself, for instance to modify the Cython sources you can follow the following instructions. It is recommended to create a virtual environment for development to avoid conflicts with system packages.

Create a virtual environment:

python -m venv venv # or python3 -m venv venv

Activate the virtual environment:

source venv/bin/activate  # On Windows: venv\Scripts\activate

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

Installation from Source with uv

If you want to compile and install pyroaring from source using uv, for instance to modify the Cython sources:

First clone this repository.

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

To build the package without installing:

uv build

To run tests:

uv run --with=pytest --with=hypothesis --with="$(ls dist/pyroaring-*.whl)" pytest test.py # windows users need a different way to specify the wheel

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.1.0.tar.gz (200.3 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.1.0-cp314-cp314t-win_arm64.whl (234.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

pyroaring-1.1.0-cp314-cp314t-win_amd64.whl (304.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyroaring-1.1.0-cp314-cp314t-win32.whl (241.5 kB view details)

Uploaded CPython 3.14tWindows x86

pyroaring-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyroaring-1.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyroaring-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyroaring-1.1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyroaring-1.1.0-cp314-cp314t-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

pyroaring-1.1.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyroaring-1.1.0-cp314-cp314t-macosx_14_0_x86_64.whl (393.0 kB view details)

Uploaded CPython 3.14tmacOS 14.0+ x86-64

pyroaring-1.1.0-cp314-cp314t-macosx_14_0_universal2.whl (732.4 kB view details)

Uploaded CPython 3.14tmacOS 14.0+ universal2 (ARM64, x86-64)

pyroaring-1.1.0-cp314-cp314t-macosx_14_0_arm64.whl (345.7 kB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

pyroaring-1.1.0-cp314-cp314-win_arm64.whl (224.8 kB view details)

Uploaded CPython 3.14Windows ARM64

pyroaring-1.1.0-cp314-cp314-win_amd64.whl (270.7 kB view details)

Uploaded CPython 3.14Windows x86-64

pyroaring-1.1.0-cp314-cp314-win32.whl (216.6 kB view details)

Uploaded CPython 3.14Windows x86

pyroaring-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyroaring-1.1.0-cp314-cp314-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pyroaring-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyroaring-1.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

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

pyroaring-1.1.0-cp314-cp314-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (1.8 MB view details)

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

pyroaring-1.1.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyroaring-1.1.0-cp314-cp314-macosx_14_0_x86_64.whl (385.4 kB view details)

Uploaded CPython 3.14macOS 14.0+ x86-64

pyroaring-1.1.0-cp314-cp314-macosx_14_0_universal2.whl (712.4 kB view details)

Uploaded CPython 3.14macOS 14.0+ universal2 (ARM64, x86-64)

pyroaring-1.1.0-cp314-cp314-macosx_14_0_arm64.whl (335.1 kB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

pyroaring-1.1.0-cp313-cp313-win_arm64.whl (216.5 kB view details)

Uploaded CPython 3.13Windows ARM64

pyroaring-1.1.0-cp313-cp313-win_amd64.whl (263.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pyroaring-1.1.0-cp313-cp313-win32.whl (211.2 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyroaring-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

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

pyroaring-1.1.0-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.1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyroaring-1.1.0-cp313-cp313-macosx_14_0_x86_64.whl (384.9 kB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

pyroaring-1.1.0-cp313-cp313-macosx_14_0_universal2.whl (710.6 kB view details)

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

pyroaring-1.1.0-cp313-cp313-macosx_14_0_arm64.whl (333.4 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

pyroaring-1.1.0-cp312-cp312-win_arm64.whl (216.7 kB view details)

Uploaded CPython 3.12Windows ARM64

pyroaring-1.1.0-cp312-cp312-win_amd64.whl (263.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pyroaring-1.1.0-cp312-cp312-win32.whl (211.2 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyroaring-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

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

pyroaring-1.1.0-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.1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyroaring-1.1.0-cp312-cp312-macosx_14_0_x86_64.whl (385.8 kB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

pyroaring-1.1.0-cp312-cp312-macosx_14_0_universal2.whl (712.0 kB view details)

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

pyroaring-1.1.0-cp312-cp312-macosx_14_0_arm64.whl (334.2 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

pyroaring-1.1.0-cp311-cp311-win_arm64.whl (217.6 kB view details)

Uploaded CPython 3.11Windows ARM64

pyroaring-1.1.0-cp311-cp311-win_amd64.whl (260.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pyroaring-1.1.0-cp311-cp311-win32.whl (209.2 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyroaring-1.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyroaring-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyroaring-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

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

pyroaring-1.1.0-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (1.9 MB view details)

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

pyroaring-1.1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyroaring-1.1.0-cp311-cp311-macosx_14_0_x86_64.whl (382.0 kB view details)

Uploaded CPython 3.11macOS 14.0+ x86-64

pyroaring-1.1.0-cp311-cp311-macosx_14_0_universal2.whl (706.4 kB view details)

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

pyroaring-1.1.0-cp311-cp311-macosx_14_0_arm64.whl (332.1 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

pyroaring-1.1.0-cp310-cp310-win_arm64.whl (217.5 kB view details)

Uploaded CPython 3.10Windows ARM64

pyroaring-1.1.0-cp310-cp310-win_amd64.whl (259.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pyroaring-1.1.0-cp310-cp310-win32.whl (210.1 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pyroaring-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyroaring-1.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

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

pyroaring-1.1.0-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (1.9 MB view details)

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

pyroaring-1.1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyroaring-1.1.0-cp310-cp310-macosx_14_0_x86_64.whl (382.8 kB view details)

Uploaded CPython 3.10macOS 14.0+ x86-64

pyroaring-1.1.0-cp310-cp310-macosx_14_0_universal2.whl (707.6 kB view details)

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

pyroaring-1.1.0-cp310-cp310-macosx_14_0_arm64.whl (332.5 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

pyroaring-1.1.0-cp39-cp39-win_arm64.whl (217.9 kB view details)

Uploaded CPython 3.9Windows ARM64

pyroaring-1.1.0-cp39-cp39-win_amd64.whl (260.1 kB view details)

Uploaded CPython 3.9Windows x86-64

pyroaring-1.1.0-cp39-cp39-win32.whl (210.3 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pyroaring-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyroaring-1.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyroaring-1.1.0-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.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyroaring-1.1.0-cp39-cp39-macosx_14_0_x86_64.whl (383.4 kB view details)

Uploaded CPython 3.9macOS 14.0+ x86-64

pyroaring-1.1.0-cp39-cp39-macosx_14_0_universal2.whl (708.9 kB view details)

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

pyroaring-1.1.0-cp39-cp39-macosx_14_0_arm64.whl (333.1 kB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.1.0.tar.gz
Algorithm Hash digest
SHA256 f02e4021397ae02a139defdc6813b9942ab163de90affddd4ce4efbac299f619
MD5 041e0ffacf1332d1ba644fdd24be80e9
BLAKE2b-256 d746a50510d080f8cb089303ec0f7cd80736b2949ca3d148f48f1cc90c49e345

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: pyroaring-1.1.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 234.6 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 99c42fe1449acfbf130da65e66b4d5b2726aba4497be359bae7672e38a15fc62
MD5 953c47eab2e0c36f753e4c68b3a6e507
BLAKE2b-256 8ae039afe4bddbed6276c54e35e310aa345fbeb00f8890e96e7f48cdc2be9c66

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pyroaring-1.1.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 304.5 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d92a0f4c7e6bb7deeafac68c79c92ef9340895fe825cf1a31078443753ab6756
MD5 c1b59acde3c486ad55d827035fc80709
BLAKE2b-256 2e6efb9876940acb50df355a473c087b9924e7b3368070403683941653b6fabc

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pyroaring-1.1.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 241.5 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 1fc112b9a9890f89cc645a16604783ed7fa25299f149b0ef7b45a5e2e3c1f31f
MD5 196051f635f72df1f63c8e54f909e502
BLAKE2b-256 436df991526fdef3cf7739f6db0cdf12b157e840e0ddd4a7e1c2a477da9072d6

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19d0c81c865d63791fe20e5b38733b66f4f962e677ae7e8b3d3c4947ac6e752f
MD5 fed29cdb2a46c408fb2fd6cf0376549d
BLAKE2b-256 0cf90d01c6ba01c0d01609fddb1d46138a7ae95b7db386bac4afb0ff082d5c0e

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f1d76ef29034017eb2cceebd5fa0504d6ced218ce6432f99da5adecbe038269
MD5 f5ea8dd7dea49d99d0d9ade21493a1e2
BLAKE2b-256 0b12d44d144352a4586544313a97b2576f8f8673b98c02ae7fed77d38751cc1f

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a5fbcb86e44f1c0c9c052917eee67a04cbac9de7392fb4bc77c140ff4a7e471
MD5 89709e22b3386d7ddd30c731a5763c0b
BLAKE2b-256 bdd8bb7d69978a5fcac95da48bedb114554d8345b50b77f042e8cd2a8277bb4b

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 650db21c10f42ff2b09ef02c10a779a3d59d0c7512552f3844738b30adbcb8a5
MD5 f3c131506982cbdcd7145e7b2ffda379
BLAKE2b-256 031729b128a580ec43905fb766b934e7dcb1095059e99e38e941edf50152207b

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314t-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314t-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d9127feb5356ba3a92bdffa04c1bf6bcbc8d436369f78badf441018c3029dd63
MD5 8028abf829066efad13ac8f014aeb4d5
BLAKE2b-256 7d47de43464f9b28c445868e4bc8f0e6c6dcd51103bd9a757e3dcd9af25a4a69

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 381eda673442c389993f8b0db2dbf5d02ea8ea9aac6ba736f64cc1ffb6c96885
MD5 6c8f6561582db557ad6b693074b717ff
BLAKE2b-256 ea221eed09ff3aa792865dd52ef447cbe52dbc5901ed88bf1cf4513f7220150e

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314t-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314t-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 591e2ed4d60443dafd9075c1f72e9aaf359ccf5120e32a8c340c2b2ae3da45e7
MD5 a386aae31fdabf83835d3f6cf42f0f4d
BLAKE2b-256 047a976482874ea5e4476f9dd84e7d0274e480446b1b6ab45dfe301281814b3b

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314t-macosx_14_0_universal2.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314t-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 562fa04bbfd41144d1276ed79505007557c161371450d68a1d71fc83dc01d083
MD5 ba4430799c18e6dc882e163fb54e84a4
BLAKE2b-256 f66166b18f8ed17e70f88a410dcfac21e5964c2ad01bd4d6a25024a87522c8a9

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 39eff7dd06c163c22d0a9f9fd72d27e671457bea8cdb71215382a10512539e1d
MD5 f391d732ebbb5696982a8badbfff6efd
BLAKE2b-256 d40c9eb48ac698280170f184045814b7bd44829af37c1c6de79a4d7b5ea0c8b8

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pyroaring-1.1.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 224.8 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d2706a89242a347be20805147d58a38f4f4d8f6846228c4ee8dfd3587113719c
MD5 e56b029aea6b7e563799ea221532baa6
BLAKE2b-256 4250ab2bf3fe45e4c2952690d657321a8470558f92cf93cb197fe5d31f7110d2

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyroaring-1.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 270.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 532ae6bb1d3431d9956ef07589dd5c8dd918301a83d937c7dc6e511b1364d76a
MD5 27ce9dba843c08f4dc15c752e8d8571a
BLAKE2b-256 e883a8d9fee17e6eedf2a2281b2aabcdde86930408486381ec48d1f7d3404521

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pyroaring-1.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 216.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 abc0f0ce22464864fea208315d25e999e45cb5ee646ac1ca11d314a6a51dbe4a
MD5 0da43104e20725eff9b05cb1c423b8c3
BLAKE2b-256 abe1f67ef1c9de461a80707a2f2981320b1b30632720bac426a9bfd51e4744b6

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d9f196007f0b15ea19c21732faacaea83cbf5946b6db4949b3b98cf871c93f0
MD5 0ff47211930f85255dac01f9fe4741f6
BLAKE2b-256 9d2129e8f58c8af2ce016904a7e6aa61be675945224971cd70f3f698e584a23f

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 56a67794188275f8897a8f1fa64d6313c48241bebbdef38833063e7281b29ef8
MD5 2009be194619d614494fa0641278d191
BLAKE2b-256 f91e86f8720525250fe742fc77ea5c2a2074a1ea830efe84a79112ce6fe113d3

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b490f2d22df30affbfdcbe4f7896f321edb72a8dc0cbe5f38adec3de5b947c25
MD5 133b4155e4cc341a148417411b58a9b6
BLAKE2b-256 018c96afa9b5f509a5c607deaf30538edb3bdf026447a864cfe3f2c3d7484875

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8ac1bc26223befbca986551521f37f4c1670dfe26fccb2f0fc2775e75be99c1
MD5 467cdc92734709dd0d0e3d590477965a
BLAKE2b-256 2e38b8b861738e49fd4c4a54bebe257dced603999365629b4e10cb85fac940b0

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6a1d4c59d5b23c01d62f86d57ceefd0c0977de0425aafa7069f2d70563fed3b8
MD5 43e1a2437e9ca5737313fd491af88430
BLAKE2b-256 b1e24706ec770790d3433520eb0ea98fc662ccb1533164fd00b01f3413c3425c

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 92643c9dd303de8960c3dbed93a28b8d87da5ed0a7776568979f379d7bc8a885
MD5 577d3afa51747beb2186e38699e22ba9
BLAKE2b-256 606a3658eadbe28a5a2093c27857dd21441f1ea1cede2ddbe367df76e3018859

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 986efb3aec7655d69c14db2309a2072dbf181bdb906091fede83ad18e316cdaf
MD5 1baea40850d4f12468775b889b28eefd
BLAKE2b-256 12b9a94d6b2d7a1be2fa5009ecfc345bacb2ee0b536020aeb23e92c6bb7e70f2

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314-macosx_14_0_universal2.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 53acecba8f898e96b84d4139356e30719c70358177e270055901d3ec1cb0e34c
MD5 c77c79926eb3a478734f95f12579b7d6
BLAKE2b-256 b26cdf82a832ff3760c7c7653b80d030fb43b18eb88bfa604e7de3e84457286e

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 5e337f8c5b3c2e0c27da83fc2cb702684a47eee907a960cfee964fcb5344515b
MD5 17a9fb2bd728b1a8e104c1261966cbe5
BLAKE2b-256 93ab2260fd567a2d5d957393b932ea940dc31146bd509c88164c1b786eee7836

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 51dd2490a64ad4ed53c4fb58ef1ee3f84f6cbd97cdb47abd9065c9f714ab72ef
MD5 50f6ace1faf603138f16ead738477a52
BLAKE2b-256 d94aaa6e9833a6ba9a630efdbec8783b63da6602f763b37a5b5fbc01d73a1af1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 90ab2f00c09eed5bd986a80c8641e2dc10e7aca1a2d892d89a44b396e39c08ea
MD5 408de92f85fc8001f33aba8dbeaa2e46
BLAKE2b-256 7063d9b307462cddc82fe94a67d6810e5c802818690e131ba690c1de674d8558

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 eead129046822cb0fd47c78740b81bdaffd0515c0bb0306a2318acf0f0540b58
MD5 9930779643902eb79eeba69dd1765602
BLAKE2b-256 9ea103250fd4834b6a5c13e6600bca47ea20fda579f80bce3551d4985185d164

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8b3bfad0ae3ef0e67b40c193863dce8b7d79de545dadbe53c19acc3ace38f66
MD5 08b98a665ce13e417794da264adc4bfd
BLAKE2b-256 ab8ff392f268de9607a5c7a95aaed6b9c8a81f00c14d85c33855e9f492095478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 370d191b0d1b32bbd99452ef5f0485f22fcc4bf7404d33b821d0ce2459951152
MD5 1466e79c3a80e0a782a9ee92c3ac6c02
BLAKE2b-256 5ab6b5436e4b93c6bf2bd3dd6ccb88cbdc64b12084151a43e2f5c94be50eb710

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 81ebbc0c880c8a10f13118632e5c0d59159ceada8b651bba18f2e6dc70efdeda
MD5 01b1ac20d48c2f1b637d87e829108847
BLAKE2b-256 e81238f6b50b3f3f41a8b752d3e9efcf105b18eb2c66811831059f25613734ac

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0dfb6cf50fd8898179e460e699a6b8326ca508c627d083f7bf62f769fe1717d5
MD5 bc54182057ea7b7a0866a841fa012c70
BLAKE2b-256 0d60c4b511965802dfc77978a9e16f2813f47fb3083db1822019ba1bb169c685

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 13660386ea8905ee4d42c21a6275463e2dc7d31e0b5d65eec210aa7043ad96f4
MD5 761814c5537220a7a30d099248fa98cb
BLAKE2b-256 1140b07bac8cdc4b709a05f5c55bb52d4f684e5ea1fadfa0b6d9decf477a9d2a

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f1f56004e8f1c1489bf279c25f1fa4764252cd9af5fb35675774268a4a615ba
MD5 7c8ce235860e5984f20443df78729925
BLAKE2b-256 b05b82dc44b5074a1ff62e702d12611272d1711a60d5518dab23f94e1f7a9b3d

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 3beb40eb1220d1ce4fb3661bb019e9a21857e5bb294fe8c1c5016aeb6e82318c
MD5 2c5f2f6563a28bbb2ea62a73cb7e1413
BLAKE2b-256 f9a2f8f23515f41414332e60cd86e4957e2a6838070b2ad5fe25e80f136de635

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp313-cp313-macosx_14_0_universal2.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp313-cp313-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 4c443e9f942b6089efe8c9b264576e9d116f90be28a315679375bba2d8a915d6
MD5 9d5093e2a2d4635ddfaaaa228774798d
BLAKE2b-256 203e65cd0871e86d11c5c5cfd0f5abb0ca80eb2b6b5dbe5a2433f315a9ebd90c

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 72f68a16b00b35481d9b3bfe897ecd8a1f7da69efd92ba5b17347ca11c21cb0d
MD5 24470d6a0ffd2e39db5cc88b91461e39
BLAKE2b-256 7d751d39ecb04e6cd96d191eb8884864355051df80928dd5096a9dea43fbf63b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9882a204178cc8c915e0ce30abb4bdd1668e383c571b06649d5ed272d9625877
MD5 130a99e78557b7d03fb473c7b143faae
BLAKE2b-256 125dbb8e93dd7412180c621086ed46014a0f09f9a71d9370ce8cf607c5a2cf00

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 51ebe5e6f48e3dc9df91a4cb62137ef72e1469acd6f37479abd9991f6d945cc9
MD5 3e066f104392ad6cce1f81d5f0b245fd
BLAKE2b-256 ea39dd3341e235a3794c613ea32bd35618a88ff2ae067dbe9dd7c382c8c146d2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 61a8eabee99104ca197b6e7cce05dc4f27f503be52881800cd370eb5a5152d3f
MD5 89f9f1134e3f62aeda52fd17cf6e8c1b
BLAKE2b-256 cc5d264414a1b1bea72b2a7756e2b1dca709e5c695b0cd332a8f90c297ae3b33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67650460c65bdd7b4f5078d9c955aa38f64627d02cb48f9cfb24eae84bca2aba
MD5 e1beac600d0cccdfbf1453142208bdcf
BLAKE2b-256 1cf58ad5605870fbdcb568f0b847e1fea24adea15e07c90231fb62f339c08b14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c9f30ca28b991a920b446ed3ee19c7ecafcc49c46db592abf89cf239a7bb45f4
MD5 7e5208a44137e4823b3668bbacb7377b
BLAKE2b-256 6724904952d6bfe2e4946f361958157774230cb1ac171d306e2460620274c58a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71fec09bd42f8c33ac3b762cd00c5db842eb583ffd0e361739ce1c17ad078a6a
MD5 69790ffd5e1c835c645e2caca4673b48
BLAKE2b-256 50d19b4e2175a9bd07592ef1c6f4692ba0cfe3abd54f33ebd574aa2b2ab88c2c

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 043dbbaa905f7288c515ac06a96b67a3763f35e9ae06f0c0278c0d9964d16760
MD5 3a50939a9cf3e7c1f5c319c029ad9b77
BLAKE2b-256 c54bff77d6eb4747c65aba49d345318059f1ccfbd206bbcd34686cea819187e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8cff06d18c9a30f8547a92757078aa345db1ba5b22e3082a05f64e50b384e27a
MD5 96924ef7a2cb23275cf21a116b87b119
BLAKE2b-256 eb16b13e0727ef5c91c84ac5d9b5c4af43cb3f28d8822d96d44aa4aeefc10b37

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 66aa6a321fbc598f26d5e66050a7f145c2253f3fe5737b589841ff0cbe5cb177
MD5 8aa474fd4bede38b2e8c4a6b53103e79
BLAKE2b-256 9fa7f06a899b896bb74a031201fbba707abf23e2485f44ead28d2e91977ee204

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 5eb031237e9d39cbdfc9276facacdd88e27aefb58940bd8b56b878dfd38d6022
MD5 d6da22e866de11b495bcd3394cee09ce
BLAKE2b-256 6ea60b88a8a8e4ffdd0bf53765c3ea17ce3b747f7de42b1f10d5c50a13ba3ecc

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp312-cp312-macosx_14_0_universal2.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp312-cp312-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 e9c2b9aa8decdcf40ed8f4c887092c20a272f8c32215c3fee65e9db92ecf418e
MD5 7b243621c9bd4703431bcec8eb9619d1
BLAKE2b-256 1a1670f8268c9bac4f6d91a82df254332edfa07020fe02e97c6d3d0295ee4db3

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 fdf484d26016e0c016f23f2b635d2899daec034565fdcc062ed6b10f3b26a3f4
MD5 ff6a0a77115101f732226de16f36e3ff
BLAKE2b-256 96e9d8dcccfdac1657e6a53b6ade0c0c71d59244316810c82537a5d634f8b7fd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a98d1147fe1d3195053b67b474bccc0be5021506765d27f613a943c8c99f9e4c
MD5 932478e8e336aea35b81e1e082abb10f
BLAKE2b-256 a90dfd3f57014e98ffd20a3db7fc07157be8abb6cc5a356ccb20e1ea2493c397

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a23cd023985b5f2ba23e84e1fadaeacde3c8a59e1d2adb3fe782e99db1e22387
MD5 8cab8fc76f70d136e89f911030c2b7f5
BLAKE2b-256 be1f416a8cf29738d2e8c552fcaff7951c2a9a3bac0faffbb88b888287665834

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7caf95de39ce869ea0978068521cf6faa7350574fd1734ad6c63e5ed8cd06baa
MD5 2b5a26871768bb0eb6db21c065cfd0de
BLAKE2b-256 99602b3661d9a9e12dac02d2c3ef4545bd2236fcd964ba8fdd96e308ca621153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9864e19109e76111befc75d799d334e7365eb4189607aa734053c12e7840fa5
MD5 d27dd930bdb294c9006e08c5e88e59f5
BLAKE2b-256 b726b5a29c0f38c581ac290245150d4d14b627f110eac208f3569d5d8739c78f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 731a7a9e050758986d5757eea10f9ccb08f9c3ef514ce0335f4a90e126f81131
MD5 5ed938187a7bcfa4d1b5e3fa679d3be1
BLAKE2b-256 23a8f8a4b55b0817aac3caf6b3b51f2e93cf152f32784949919512bd38feb0f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 532e53191d8dd29dedfc5202cbb45632f7df751b207a7f6d6860fb7067c7fe11
MD5 ccd1c3c69da5d8df13f0a8305d3e32bc
BLAKE2b-256 acff8e7da41468a33fc9d0fbee949e8f3f734930b5173020a478686558388f31

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 100585f438b293112e2c52e45a442835837c8a0267dd1e513bafec35628f8ecb
MD5 30465da8209e518184e6f79b00e239dc
BLAKE2b-256 104b38bded4ca17af6359c1766c25e942435332d26e2cb3321d9d081546b75f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 01212da3752d6486adcca98c9d353f8fb8e36513e05062cdd0feebc4211dbe70
MD5 ebb1aa0b552f9a07e96873430fd79387
BLAKE2b-256 c728992f2f2ef573b54559ed4bc62b5cf0ea095a59173521cfbe78dfefcc08ad

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c14fc6bd65e5624f76b90297b081222261476978f795f60d48745553617ddceb
MD5 63cdd4dffafc1c70eadbe5c111adc125
BLAKE2b-256 8873adc7951e0d4e65ab7a84fa5562bc28ba2dcc6f461a9156edc0d5aefda7f6

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp311-cp311-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 44a9f9719ed18e86627286f90057f9b7e22f6ba1d952c9793f9600b5c14e8680
MD5 1a797acc0523f87175d03a53fa7b59d0
BLAKE2b-256 06065120acc9918223ccb647dfadb430da1ec08d7ada818469ad3a2f1574b8c7

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp311-cp311-macosx_14_0_universal2.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp311-cp311-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 9cf8608c9d6cb6bff9c624744f7a2ba8ab12276f097a07930490fe0e2219e9be
MD5 f9d971477f1a7472e1f1c8e597e29911
BLAKE2b-256 fda1938a9fbdd41699ac9419ca922fcf80eb58c0c62aa34539aa540abaee9a63

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 462b0952277d3100a90ae890ae641d3fb3561b10cfea542e02468f0bef7700a5
MD5 cf314a20f93c801dcee77a96741110d0
BLAKE2b-256 4eaa574f153feb89856010092c33cafe4a52f4da8cea19d441cbc4cbcb8ccb1f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.1.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 8f5194c0544b08e56e108dad096c468c67f8ac60eec42763aed36ccbd3565346
MD5 4cc2b688493c06b9e7d26cad4070212c
BLAKE2b-256 c94cb57b59a7d7f913eb6d1ce2578fbd82a3209805a33a673f562ca1035839c1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a6343249ce9401dd90c3b934fd9a4a618b6fc455f27a9aa11d198eebd4743137
MD5 daf4e2aa0627ee629e5df7d2d0b7a40e
BLAKE2b-256 f98e802d6edca2dfdca841ecaafb1d60c05657f2d3948b7b78eb892cf8195dac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e9caf67c0c05d27bab0d88cf193e73023f624c6714f1ff807c7d4b135b19d36a
MD5 0c23e82f00d899ed4bb572eb5bd7b0b5
BLAKE2b-256 cdfa665ad8ce092e24b4d3b1f5e34b032d73c6a3f4792f229a70b702cd050408

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83815b3a4cb9c3b17096c70833373610d5c93e89c134548cf43436c90326bfb3
MD5 cbce44f63329803fd4d982276607f5b2
BLAKE2b-256 006ec1d09230ebe0088ca011be2879e7c2f956cbdbc530c6427f6d046658b1df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fe0b9f0baf190663df37571cbb8a77370e7bd3a66068276d48f813c53ceba530
MD5 d12a8892255c188937a8cf0185385a41
BLAKE2b-256 07c23f31ebc60ab094c1f2ff72f60aa0b5650d49c7653b5b575648cfb22b5441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc998e81748b72659802a7b434b39292308a5f4ab8dd4bf4739d65de1d4ed2bf
MD5 2dd4b9057d75f9d6e572b7f3af54cee6
BLAKE2b-256 62b6e6859ba41ad4c421248c2baaa4aa6c434369991200c4809cd389a4b1688f

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8376c62e60a49e8fe51ffce569f74beed6e53fb58e5d6739f954c8c51ec0bec3
MD5 07ee2a7aa00213384eee8131b64fb57e
BLAKE2b-256 87f082c4335651ae243eed411daa8e5acc1c62179a3e90350e4785c487e643a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5599b691e5e993f7fdd9880429d1c485eae03dc392ba5b2dbe2eef0434bea1a5
MD5 17c25348073447f7d72bfae8d86f7021
BLAKE2b-256 b64a568684cc6d5294f0ec183bacf38f5a27b2c37908d0e0ac6f4423ae7c7c5f

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55c9d0b708a65308eaa95c53d9de56a2b4425812395f6e57a4d9ad8efb081bf9
MD5 eb3fd5aafa6db72fbbb0e5b256a522a0
BLAKE2b-256 aad34c9439ff556091d93c591ac466ab526991fa8745c1a15e9ca49081f215da

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp310-cp310-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 a31276323fdd355505883162f1dca4d7acc3d6ec2159c85ddef863f1fe9e8f05
MD5 649e68f37c30ab38ab2dfef1b816d5c5
BLAKE2b-256 2253e845f27b6e6e23cb322f834fcf871e27e4e2e9284360d63e68bfcf9088dd

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp310-cp310-macosx_14_0_universal2.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp310-cp310-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 212f471da113eba24a0fedbd1ef078bfed34b792e8f48dba3f7301f1bca2678a
MD5 e71bdb78aa71e08f87d30ff80ca824b7
BLAKE2b-256 b902a3a916ac9b6de70ac8696f767eb3487c41ca37b7f991216abbebe528045c

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 19c9bb8b32f17fe63e54e78f88a7a67fe2dca352bf79d7d3b43f0a901db5ea3b
MD5 ebd35b5b55a276d9c4aa991d8a0884cc
BLAKE2b-256 28b0ab1c3b9227aadc326138cbbb973549399ece103d35b8c11952405a252a4d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.1.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 3d04c3eb039cf2295e4d375ef81fd6e3cae7cefe3b5c457ccaf78d7d6f963a5d
MD5 97e990220589209a6bf69be2fd92a52e
BLAKE2b-256 5edea8fd3d3c32dc1c003930bb7d1a0293fe8c6b1b0cecc1db04df1d9102930d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4a2c7ecd74e7b3ded54ad771a2b7c0aa08aa98f78e43500fa970d68d684bef0c
MD5 36e09ff77ddc87d1c2f648905d6b7459
BLAKE2b-256 4588c895f5d8c105b6a28a5fbe3e17cc86e9e7f9249d8f3759129e8a7809451b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cdf2b8ab0effc335a9e61cf2a1e14c2295b999a656569b35f35ea3dc55a8931f
MD5 07925eecb67d23f01a78ef82cce1b246
BLAKE2b-256 c16f724416e777e184f888acc1d5980b26efa283073a7a0810833eda58e1b70c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9dc61b7e38aca2ef384ac22b87a9c2b1e8769a1e15d916f93ea6a9a4551fc1d7
MD5 f0967a92ceadbdaad5da7388371a54d7
BLAKE2b-256 b3c20ef0c9358d51ee17e4e46817e1f8bdc13f06560d47e9e867e6959ad08c6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25d65257258f7a3df8b872ddfe18f3681f20b3bc2a3093f08fc80c66338051f4
MD5 366dde1048599075a32da703f9954eca
BLAKE2b-256 32f213919acc4ac179fb219ddda0cae7c8213518cbe7b52906fd3238b3527777

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 974fb6fa4c4a682c633c4d7fa6087ccd717804726f9db1f771f1c2ea4f3990b7
MD5 42ed6f102906d219bdfb4f16821cc3f5
BLAKE2b-256 5951a652c80011b8fcaeb1be85f6ccbb16eb367398b081c6084cfe08826eaf0e

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 499f0a5d03d64e7b846ee749e87721fb8516da7233baafb24ab69aa63bcf080b
MD5 c5c8a0aadc1113cb86e2c191e25fa203
BLAKE2b-256 abe93b4d5d238ad1d77d626664d4610f946537b080d6fe4d749076480cde2b71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cc2d113bf6236aa873dc710b38a856808c6054efd3a1a403c5acfceaf87138f1
MD5 ab1b22b31275247075433596ede81686
BLAKE2b-256 18ae271edf500a2a648f7f3031c62136464c1d86828b495b4ee7b8601131a1fc

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0183b26c6e25a14e32b2aed7095a19491d6c835096032b33bc00b4ae995495bf
MD5 c4761bf1898d7a1a6f3d538d69530fda
BLAKE2b-256 b56a8ba010922427227cc2848fe29314609f85fa6e5ac72311aa4b5a8c3b6828

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp39-cp39-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 f742ebdd879063d2a92f4d57708886c720e854bc84ca240733f220936be0cb7e
MD5 e5d99c5921f57455f6d64b897b19d69e
BLAKE2b-256 44a5fb35a884cb84cd7d864bb7d93f94f2302be4fe7e628d36d58db784a8d76a

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp39-cp39-macosx_14_0_universal2.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp39-cp39-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 4ae81a0353af50d6885720b9119783b8be7bcd079e727ea1c4fca3f452fe95ba
MD5 282fb94a8fd49c97606bab67e15d45d7
BLAKE2b-256 ae7a33dd14a2fc49e563913bc91d3d3b4ecda6142146a76cea4aa68102442c3e

See more details on using hashes here.

File details

Details for the file pyroaring-1.1.0-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyroaring-1.1.0-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c967ddb5e137c604ec94c7120d2f420ac9a9ce27b0e44987c7134b0eb5fe7a60
MD5 3175e6ef2f185474910924d00fe47b07
BLAKE2b-256 fa5960a2e27b000faff05dada1cf87378652015470c9506bc3d5da0b4b82210e

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