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.0.4.tar.gz (189.2 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.4-cp314-cp314t-win_arm64.whl (234.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

pyroaring-1.0.4-cp314-cp314t-win_amd64.whl (298.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyroaring-1.0.4-cp314-cp314t-win32.whl (234.2 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyroaring-1.0.4-cp314-cp314t-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyroaring-1.0.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

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

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

pyroaring-1.0.4-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.0.4-cp314-cp314t-macosx_14_0_x86_64.whl (372.2 kB view details)

Uploaded CPython 3.14tmacOS 14.0+ x86-64

pyroaring-1.0.4-cp314-cp314t-macosx_14_0_universal2.whl (707.2 kB view details)

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

pyroaring-1.0.4-cp314-cp314t-macosx_14_0_arm64.whl (335.4 kB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

pyroaring-1.0.4-cp314-cp314-win_arm64.whl (223.5 kB view details)

Uploaded CPython 3.14Windows ARM64

pyroaring-1.0.4-cp314-cp314-win_amd64.whl (264.9 kB view details)

Uploaded CPython 3.14Windows x86-64

pyroaring-1.0.4-cp314-cp314-win32.whl (207.5 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyroaring-1.0.4-cp314-cp314-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pyroaring-1.0.4-cp314-cp314-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyroaring-1.0.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

pyroaring-1.0.4-cp314-cp314-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

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

pyroaring-1.0.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

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

pyroaring-1.0.4-cp314-cp314-macosx_14_0_x86_64.whl (363.1 kB view details)

Uploaded CPython 3.14macOS 14.0+ x86-64

pyroaring-1.0.4-cp314-cp314-macosx_14_0_universal2.whl (686.0 kB view details)

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

pyroaring-1.0.4-cp314-cp314-macosx_14_0_arm64.whl (323.0 kB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

pyroaring-1.0.4-cp313-cp313-win_arm64.whl (215.2 kB view details)

Uploaded CPython 3.13Windows ARM64

pyroaring-1.0.4-cp313-cp313-win_amd64.whl (257.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pyroaring-1.0.4-cp313-cp313-win32.whl (202.5 kB view details)

Uploaded CPython 3.13Windows x86

pyroaring-1.0.4-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.4-cp313-cp313-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyroaring-1.0.4-cp313-cp313-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyroaring-1.0.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

pyroaring-1.0.4-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

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

pyroaring-1.0.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

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

pyroaring-1.0.4-cp313-cp313-macosx_14_0_x86_64.whl (362.5 kB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

pyroaring-1.0.4-cp313-cp313-macosx_14_0_universal2.whl (684.3 kB view details)

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

pyroaring-1.0.4-cp313-cp313-macosx_14_0_arm64.whl (321.2 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

pyroaring-1.0.4-cp312-cp312-win_arm64.whl (215.5 kB view details)

Uploaded CPython 3.12Windows ARM64

pyroaring-1.0.4-cp312-cp312-win_amd64.whl (257.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pyroaring-1.0.4-cp312-cp312-win32.whl (202.5 kB view details)

Uploaded CPython 3.12Windows x86

pyroaring-1.0.4-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.4-cp312-cp312-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyroaring-1.0.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

pyroaring-1.0.4-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

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

pyroaring-1.0.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

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

pyroaring-1.0.4-cp312-cp312-macosx_14_0_x86_64.whl (363.4 kB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

pyroaring-1.0.4-cp312-cp312-macosx_14_0_universal2.whl (685.7 kB view details)

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

pyroaring-1.0.4-cp312-cp312-macosx_14_0_arm64.whl (322.1 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

pyroaring-1.0.4-cp311-cp311-win_arm64.whl (216.5 kB view details)

Uploaded CPython 3.11Windows ARM64

pyroaring-1.0.4-cp311-cp311-win_amd64.whl (253.0 kB view details)

Uploaded CPython 3.11Windows x86-64

pyroaring-1.0.4-cp311-cp311-win32.whl (201.9 kB view details)

Uploaded CPython 3.11Windows x86

pyroaring-1.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyroaring-1.0.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

pyroaring-1.0.4-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.4-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.0.4-cp311-cp311-macosx_14_0_x86_64.whl (359.9 kB view details)

Uploaded CPython 3.11macOS 14.0+ x86-64

pyroaring-1.0.4-cp311-cp311-macosx_14_0_universal2.whl (680.8 kB view details)

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

pyroaring-1.0.4-cp311-cp311-macosx_14_0_arm64.whl (319.9 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

pyroaring-1.0.4-cp310-cp310-win_arm64.whl (216.5 kB view details)

Uploaded CPython 3.10Windows ARM64

pyroaring-1.0.4-cp310-cp310-win_amd64.whl (252.2 kB view details)

Uploaded CPython 3.10Windows x86-64

pyroaring-1.0.4-cp310-cp310-win32.whl (202.8 kB view details)

Uploaded CPython 3.10Windows x86

pyroaring-1.0.4-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.4-cp310-cp310-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyroaring-1.0.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

pyroaring-1.0.4-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.4-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

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

pyroaring-1.0.4-cp310-cp310-macosx_14_0_x86_64.whl (360.4 kB view details)

Uploaded CPython 3.10macOS 14.0+ x86-64

pyroaring-1.0.4-cp310-cp310-macosx_14_0_universal2.whl (681.6 kB view details)

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

pyroaring-1.0.4-cp310-cp310-macosx_14_0_arm64.whl (320.2 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

pyroaring-1.0.4-cp39-cp39-win_arm64.whl (216.9 kB view details)

Uploaded CPython 3.9Windows ARM64

pyroaring-1.0.4-cp39-cp39-win_amd64.whl (252.7 kB view details)

Uploaded CPython 3.9Windows x86-64

pyroaring-1.0.4-cp39-cp39-win32.whl (203.1 kB view details)

Uploaded CPython 3.9Windows x86

pyroaring-1.0.4-cp39-cp39-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyroaring-1.0.4-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

pyroaring-1.0.4-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

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

pyroaring-1.0.4-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

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

pyroaring-1.0.4-cp39-cp39-macosx_14_0_x86_64.whl (400.3 kB view details)

Uploaded CPython 3.9macOS 14.0+ x86-64

pyroaring-1.0.4-cp39-cp39-macosx_14_0_universal2.whl (682.5 kB view details)

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

pyroaring-1.0.4-cp39-cp39-macosx_14_0_arm64.whl (320.9 kB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyroaring-1.0.4.tar.gz
Algorithm Hash digest
SHA256 99d4217bdfeedc91b82efcec940175a9f9a9137c6476faf7ce5d9c9dd889c8e6
MD5 4e9f6e1c1d2d04b5a0eb6e7ffc48faf3
BLAKE2b-256 fd71134bcaf93d8734051ecbc164dabe695645849249e0fb24209b2dd88e8147

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 234.2 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.0.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c291428f148450e0609d5b1201b81e8248b3262770e51fc4c89768529ee36df0
MD5 153e37a1cc71399265ae8f0e1de2e6ed
BLAKE2b-256 a64dbd52a55dcef5cde4d0dda8c80000463c6929c7faba2466d9fa58fd0d48f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 298.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.0.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 92fdad43421ad2e076639f7a0d9ee815713b98bfe07dd9107ef3ea91ff0f3b37
MD5 fce66316e330bce4ce81dbf8de6fc57a
BLAKE2b-256 509dbcd304935f20ce5f9ecb2837df69516be657e144da350a73a1899985aa38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 234.2 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.0.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f9a111e668f026849a22a7e4cab628e41e48bb87bd2a9aea72bca75edcd7a6f2
MD5 e098dd2d538f739fd9335653ead1f628
BLAKE2b-256 743a0a9d837478912ce51d1583bc4352818e8933252207d05d3021e91103e084

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4035852113b720f72872741be8f9760c0d2dd1640f0bc598ece7ff7ca226a3a0
MD5 6d3f507bd201819dc4dbbfa940265b90
BLAKE2b-256 2543f57f8696c050dd8b642522e9ab775987c8fec7a61ab2a0899776c7f82036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 731e1f64292ee0e99cf43ef9d052c75c06f4c6dda752a6a21d062726bb077a2b
MD5 368eb38abc2dd7ed22e13a19b7a6b2d4
BLAKE2b-256 ba259a3e61e85ce1e670fe3fbaac2a56eb0c8c8aa6ac3a945f5f734bf5851b7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8285cb12c7181cd29c9807f624d729c0db7bbf6f96fe7c25aba719225f85051
MD5 7380f10465d7b7c9a874531dc4dad6c7
BLAKE2b-256 bc2356d4dba6fa2aae5c862f1c46d9f8c8d53f7c3ade95e327db7e430913ef8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a4ce889a06603931a03195b90dc11f03cfb6849c4d8504168e7325da06ce95ee
MD5 de6217c906a0d5512c5a224ccd377e09
BLAKE2b-256 f1847291e0a04af887f58ecd58a304dae2f979a8393ad7cd18059a744a16053b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314t-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 84925878cff40ce1f5a99de0fc5b49b7cf6a6276ae5046ae80bc2ae9b5b83d83
MD5 f6e8abeeae9182576cee96e835a16547
BLAKE2b-256 36f712f5dc15217f9d018b0b76dafb89db49833c14d58e49a0a16779b7b231ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 236c5fb377d942c0911c7f7b1d929e192ad0165f07dca0957fa4b8ec607b4a8d
MD5 38f28fa2315a6ea0c8753e1fc256a595
BLAKE2b-256 c98a78cfd7c35c1e6a82bbca8e3f57f123273168b892ab92daf5138a3717e57d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314t-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 01f990499a4f34a666702da16080b6a94b990c5dc5cd7f2b1f6f92a7184b94ed
MD5 9d6f00dc1e7c073a90ccaa50a0a6692e
BLAKE2b-256 074a0fdd0bead1a3889cc6bd0dccbc168df5a4c9fc635e40a95f13426246c7c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314t-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 d943aebe18f017e3a37acdf8eced5b37bd9b5d5fcde8d581936ec6732b72f3c7
MD5 06144d567a7c6eb9890b474ebbe3a551
BLAKE2b-256 66360c06caab704ed4573e5e4f24e5f4a99c6c9c03f24a53d0f73970517dceff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 91e615d6a5e114ce9297650fabd48bf1f01655cfd5bd9cb41b9b1dc0ff840e06
MD5 106d5b1854d81658cfe4a27724594ea1
BLAKE2b-256 e4a9f0a925c0d857d23830fa1a12452d0976f8ba245f2e4a9f019243b6d6f0c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 223.5 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.0.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9ef52a2a1b3e6ccb3daac2dd5e8178349846d05f8cc1d0c05c551f73927cf0b4
MD5 9f5c7aa18de396a5bba05631a7c0eaad
BLAKE2b-256 522ef9146436ecf3cf5af8c581f69ebbf03dd3d1561c7b8fe39679b50a3c37b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 264.9 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.0.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 06f080c8dc42af32f66f11afdc603d5bf965d9239ad8d7773f0bae0d28a4e22f
MD5 c8a39e1c28f96f7eca37dc913937d196
BLAKE2b-256 c78ebc8b4704742debc21b4f4eebb5de8fc7d9e3ce8643b7d65c5c519eff5e42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 207.5 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.0.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f0239d70d5d83227fa43a43b332bf707c6cafa7e28c14889d1602fc872934f02
MD5 9514099aa9c2b7be863df693d7f3c6c1
BLAKE2b-256 b22b4d73d056a73f65af4a58e8c691adcbcf563dd220d21f4285ebcc7d10509c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f617e66633428659193736bc568a0462f2966ab14229ec936ebb490647caa67
MD5 dd4965b1a81be5c1bdd5259b7370bf66
BLAKE2b-256 fc33db0761c3120a65e8b2e0ee3d75b645674c532c65c22396a219f707bf963d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed967ec4ef3b9de7ef3f7c0cf3a850b599111479654d0b7962f12acea77b24ce
MD5 10a298c15cb4f375372ef41bd0ffa732
BLAKE2b-256 781d85d398b50f4e4c47ee88e65d172d07a4bc2f2d981ca4b366e5c83b67f38c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 078ee25ed3fda098032d7f30a603f836b538e5e7e5717d8dee29b42de4547250
MD5 c38d531ae1d2552e6c2ad122a7d8a90f
BLAKE2b-256 74ff75e3a99ebc63ba2be3a484bd7b0e191209f4b5cbbcb094a057779cef4ac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 abcb5083a80453ff59757882510c41e895b20c3326a37e3f683993953ae6ed1c
MD5 044e0b82c94347d4ae18a438d368d49e
BLAKE2b-256 3230aa3b93bbb13c9d122e6d95cebedcd3479366cee9d78094f5207b9da0642e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2fc84c41de2b1370d57fea076f12246e6ab9333499ba6e8c74a5ea32168d357a
MD5 3d6c02d9aa1fb949150db602f932079e
BLAKE2b-256 23218f75c12cab6e0af84464e8d8aff14bc46daa72d8d28c1fa966ba5f296705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 edd767e6263fa17feae959519ee3d9bdbd0c5f03b55f89ecdff9d7136886e8f6
MD5 9f67f5272a09382471d22ae1596db4df
BLAKE2b-256 515d1bc58754e2c747b06ff380467a2d38b63542856bbf681b4472fa3f9e2346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 316f89f7961972d07b7ed71f32335fe1b47d143b3dca1c35d58c48299f687750
MD5 6816b17f5d1e13072d14c577867f966d
BLAKE2b-256 c8000c16fcd126e1cac0280ab1f44bcac8603ecca124c36cf5c523698abe628d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 55ae44a958017ef5d355c80a1b20ecd5cf8cd796ea26c9e34ef606a2f65f49de
MD5 295ac81e141fc6092202739e992b614d
BLAKE2b-256 92ee573e103a721feb22b9299c65d71bfc24872ddc487a84b61407a45750cd4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d0b14587e4ea67b7c7e16293bd934929ac1a7cced34aed11caab15466b24b8d4
MD5 3d390bc0ea3ce0c2dee1a74b85c49e2b
BLAKE2b-256 fdd964ae48d0d7d7e8352ab894a2d38b111db87499af2d2fa98464b395a1ab86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 215.2 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.0.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 645af7435e9ad31a7aa6891b55797fe904c9c579fc5993b7fd59605f593188b9
MD5 4b2bf935f072bba62ff950156a1694f4
BLAKE2b-256 7073ba128b5bafe10f7098217f257a11b1f5ecb50947e3800101a13124562d0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 257.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.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 048b915bacfc8e4d05de4fe6c2d7f7dd9d4c7a200b3b23dc1589226ca2526b41
MD5 663ca1239d2f1c375c1de950ee094f69
BLAKE2b-256 f8b14ab2b78ab46dd4312e68013f997b4e771ed91c6acb65a00bbeafe7ea3fe4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 202.5 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.0.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9be9df4a9ec671fdef22581e8ac9110ca8c47c5724e90ce825d54813de8ac3d3
MD5 979b87836432b225bb4a158245bee0d5
BLAKE2b-256 05daa527a6141ea8839bee27869b92584f05120e1fc47cd572e313ddf5fd9f56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68f18b8fffee671996a4ba450f015a89281f7b7516ccc70b1398f20f46858536
MD5 a9da58dea7633e9cb54a7d69128cf686
BLAKE2b-256 a3aa1c3746750c8c9b972d421fc6eae27fc21109a5cc26b89b7d5f8d104a613d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15b0b92b4dcdb636ecd0a2104ef3be6b5288f85642dd16d7d631152948c3856e
MD5 b0b2b57236e1f1cc5164e7d5de30dbfb
BLAKE2b-256 3d677b0c91ea00d0c3e447c7507d8e9f26d94cad1f3c24c86088840d9fc490d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79af77dfb872da8a908514628b3f6bbcd2151bf31aeafebe2527e8d6fb786c97
MD5 67873ad26fcaecfbf243d9969ab6c112
BLAKE2b-256 95d4864caa6719c3c229767a1cc6c32f707c0f7a67dbe19c3be595c7f43dec4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bbed00fb4c4f2ba0446e159f025beebb12c2f12dd34827551eb239438044fdb9
MD5 437a57a65f89e62ff548f74491c5aeff
BLAKE2b-256 488cfc091d54a09f549c6fb860302676f2b3ca79ffbda23f298e59bdba693989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 15c7f8b4bfc66c005723218500af414466a52e5cd419dbdd3a899307303b4322
MD5 2539b16b81d3348e421b5d99ac71c926
BLAKE2b-256 f38461176b1fdda1cde8572fc66fd88c1169f72fcace6b443bd8113df075b940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ef35040b1bc4bb686b4206f4a4de748f6209fa578cafdf177ca3bb67f7bd552
MD5 c786c537862388b3d0cfd3d8d1f2b386
BLAKE2b-256 86463c6177117baa1896f38818767db1cd43130b32afc8b63a7be2a0c18faab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 f38ca8a8b43f6a12d606bf68d9c0348620bca29b97d315d545caa3f0a1179902
MD5 7c80a94503d8027c94efa6339e7340e0
BLAKE2b-256 36103c8cdc657b7ca4f30f51e385980b205bf1b1f04cad12c856a34db380bc5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp313-cp313-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 cbbe3fd3baef0bf04e149031aff44485757173370c5ce326ccb5269e131377ed
MD5 7d0a4b69e47c8c654b5c65628ea573ea
BLAKE2b-256 be259c1c57743c2bb400d09e29f174b5369054e2700343b04dce36bdb55702e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 4171902a88df936564f39cce05e36ff5d363e122575d5cf575163917be9ec91c
MD5 d4a19b8b2a97d62cddeea3e09ac6baf5
BLAKE2b-256 45d2bd78613ecab5dcc17631de0de019b16470f1974e88cfb577caf131083661

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 215.5 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.0.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 226079645dd4098d3619ae5fc19bf9abfd2187a74aba94a8768443e637d406fa
MD5 433fa108b8cb632b9de8eb6723fd13df
BLAKE2b-256 bdd77bc58e807e7d6739f4f5c45964a35927e1ff7f591e3943372097d29a00a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 257.5 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.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 63ab0dcb24933fc9d4ca8c9fa0440f7e177183975990f756a42cddad22fd66db
MD5 0f24adc85bf5dc93982c64a7546a999d
BLAKE2b-256 b92c5e41a91822c3bbc735382939d354e2c10bae453b18fe5a133f7fdbb33ce9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 202.5 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.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4dca094f1d0e18901fa3f6b8866fa14a0f9640b22f41f5fc278c20e15e70efee
MD5 100ffc26c696cac45519b8ce5b49d40a
BLAKE2b-256 ad1695e223db5e60a6def8abcc2a8ebc4c71df23148a602310973c9a6964e3c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06b15bc8e0c272c3bee0c8adc29130178cd792ad99af64d7d7a1eb3069a1e0b8
MD5 4ca23d0c2096082fb54fe174ac52681e
BLAKE2b-256 9f134d8beb31e4f648326b9b39c8f056fc1cb41422ef4e2be17cb15432c7fd40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dd89ebb7496325fb1b3dbe290dad35bc4da8722b5e3afd2a71b1d6e8ad981725
MD5 340c04cf88db84f1a6af2eb8d5e7005d
BLAKE2b-256 b998a5f6d619098e307baf71b14a4df955914e8092f459d19daf80fbbd651fa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13ccc488cfe6a227945586090397f299fd40c1a0dc1ed25e8e58a4d068c1ed46
MD5 a646accfa80132360b2310cbd34d293a
BLAKE2b-256 7a310d0320925cf8bc1fcb53db182359bd673bf6b434f31c6cc69e4f5312c55f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a8b8448c2f7af3b40f17dde23b6739f3b19cf8b24db6f817c549c870d50aae3
MD5 5115c1bf19e80cdcdfac070d332c5a28
BLAKE2b-256 f725966ea0a9d857ac3f2af1eaebdbfd56e627507b890f8ff7752c32e8e57b57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 dcc7d0133f46163b5390dd151e3305bd47289f7710c6e5444f38453d55b15d1c
MD5 b46eed9004e3b8977896a93f87701363
BLAKE2b-256 c812ae7b4fa3682190597cbfb252be570358c5bc55f46f6b05db3fde66dfacc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dab3d8577b143c64c1c1659b4d1c69d7fec5baa0d0c0181cdddf6b84f43af00a
MD5 f4f88b6f54472035635ba941824f61e3
BLAKE2b-256 e7ff188c16cdd75d841e50d2779ff7b5d1c5c915a6f23006ef3ab3680f48faca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 d73979e1a3a6de2b7039dd9a545afa23f3b33f8b6f90a825390a34253d097f96
MD5 07fa20ba04459261ddd3df6e34d808e8
BLAKE2b-256 3db36b78bd9d743c053fb3b0485a6b1f487e6a658123f06013bee55610b02120

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp312-cp312-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 b7a527279cc378e893a543a2271d71321b57d21733915a5a14e587532e29265a
MD5 075ba484c65e4df7254a8bd5e08b3cac
BLAKE2b-256 ebe932fd7125aea82a3d1d29b755edbc7bb531907638c68a5bcc767d20c2be4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 924ee997ff1a0f2a184e39e153e9f77e0b928fe908d0aef63d03204c3ed90586
MD5 f54b7f023cb779aa4202dd33272bbad7
BLAKE2b-256 89a79f4977405d3a3fa02cf575951f03a9cda4c01efbe27a19230addee06acc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 216.5 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.0.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c2e909a436ef22b9ba9f7dbc0e88fb684ced3bc6d5192b8315fe5ba180796b34
MD5 de13f963577da703a58a3b363cc37dd9
BLAKE2b-256 175b1676f27f95ebadfa3a221c146ee941db0e91dcd08d1ee21c45106f9e329a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 253.0 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.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 910c177c3ff77db0d306119963583be85a98870d396472b5a0153babc8b7fcf7
MD5 4962c86be454349e3c851877a181a6f8
BLAKE2b-256 01c44567fa392b4cc5407471b0c1aa8263674dd0611cd51012daf58ada694d4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 201.9 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.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 76bdac16f535154322ca734cf51d96fa8f8d5a2f8d009a24affba0036f74f677
MD5 d476e49431a20c9169026a0a356634d8
BLAKE2b-256 9cb7f278f468acea40f8d3989c803cbb40ee222a86892abdacfe1e882788e292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0736ee92f8781570d5be22a4f43238937676518a18487b1efafca67a63a89099
MD5 1d75557534ee526414e7673d5a25114d
BLAKE2b-256 43ff53af720a9b65858344dcd0765f57df9900ce5c1020038d33d2bbff78203f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0333b18734475c531977e7a9027fc5753d7cac836f2475198f630ecefbbfd764
MD5 860cd5a2a03824cd6b783a037105d7a4
BLAKE2b-256 939a4fd95a78f6de7dd5c39db8c34905e9fc7a538218abcec76a141d425779e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b69e8799062acf859b13f5369c0976a6033211e72c51f8b7bc817925cab193f
MD5 f2450fcc91dd1b87e0cf4719cc1f3925
BLAKE2b-256 b8058d14ebe27b888433b61f5a9af8e99b368e58370102449299fecea4501d3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d85f85aa2f56a5dde9c8d97cbfaf80dfe9c7212171f7f263043d0800b44cee3a
MD5 c261bbc2b0bb203e2ed00ca50ffd8191
BLAKE2b-256 505ae4426481a29099095dd56b1685a78039456f36cc4afedd55a09b9c137ac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2984402d7c003923dc2e9b3e05676417f1de66ec31e4988d4b54c0a6008fe269
MD5 9e838ce1ea640c0e43d358e5a366f8f3
BLAKE2b-256 ac403475ba1a455df6ff617e9babbe998b8973483266384cd5ff4072914228da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 969c24580c9c16daa8e36eb76729d8c59c76250890dc6acdae9adb4d41107c4b
MD5 f4f4839bf965888168b23a0b3e2269f9
BLAKE2b-256 586fbdcf4b8ba51f921bc5184feb07985dcb32b0aacb78d7003d153e0883afb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 f8157345c01f633f759fc47133a076d3307f85d0246dd17986127fd1e2c349d0
MD5 08a916d2193c250e47232751eb6bd3d2
BLAKE2b-256 7f47f681a3fe58f1ca2712c33b1003e40b3716d0eab267abf8e6ae57b19c9245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp311-cp311-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 8a202294c7bfd19c2d08e95e03e486859b351a6f1daf0d69197bd8d355d4044a
MD5 6b7553f2c308486d31c4b26c85abeb72
BLAKE2b-256 b4a50759a5b55fe4ea0ef322a134117dc2a706ac76e6dcd1706b1de4c5af66a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 8e1b2a9f6f6c08e971098867186bfd23fd08afd899db318cc9ed602913b1fc54
MD5 209cc772808d6bf9b8d63d801da1b486
BLAKE2b-256 841cf96ef38332d29015ef5285c0f6117b5644ccd9930334038740aed1df0a09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 216.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.0.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 a7553a23a806033ee93f5bd50f7c963d713a26ebecd55f173d24404a8673317d
MD5 c387de28342134d425e622c393a5489c
BLAKE2b-256 14651c29ad4ac8986c0f89ed76ff3ca5c83ca8aeed268594796dec25554bb3f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 252.2 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.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 387001bcaa1653c6770eb8dd88f6427cbcef882c2ab8a812949dd8d98d09d545
MD5 eaafa4060356f388775ec0e5ce93b906
BLAKE2b-256 31ced68e2485e3b87e650535be76ed6344b663f41ad723d11a60405e375c8d7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 202.8 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.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 49a354fdd9359a11c2da5a70d5c202ee339a4328d2c57679acf642e577202b87
MD5 289a8fc77b56ac8abb74d8039dadd2e8
BLAKE2b-256 7c79556ac6b249e2c73dc2fb224baab9ecb497217d711b848c8a9a42a5b5c921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a92af0bf8ad040b513ef8867fda2669708a1b81325295c55cb4e8cc3a835321a
MD5 dcde1713cab0c665910ee61c94ed169a
BLAKE2b-256 8b71368c5b35af66fea64bf4fcb461d55857de4ff484aa3f4ff55ce2f1c2e24e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dfabce5b120dd50dc46d11066ec111732d19a4f99e5a7720271dbab5b13bb692
MD5 3fefddec205d64761e4322ead273b235
BLAKE2b-256 6c302249294290890dfdbb9d8537e5b322cd3386f716f62dafcccde1aa33edd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fcee7f9cd9dcce96e057ae78b7deef0eced728b7452dcf2781b366bd69db3432
MD5 7a59c39e43e8aa57111f936701b1a892
BLAKE2b-256 1ee9e3da53c33de08e5be4e6fd5f6444d490bb631d0b0c13bc5f753eeab5c376

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6633a7a91df7aea8340e348408b4eb92a2cd89eae0f99e9b42b1d6eb6a1c9673
MD5 8cbdb066099a8af8dc232e1afe0cc73c
BLAKE2b-256 9e4ea7d94c948450ab8f63a400d1f5cad61c2135c2b52d060865075027b296db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d3125ddc6e9e9dd58663db2db67c5ef12ac76d7a7e1882cf82581cd2307ac82b
MD5 785b4fc1486094dbc7b96ca76ed3b535
BLAKE2b-256 81e198bc17b321e6c838edb64c166e8661341b05539bde815e0198a34f56ccba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 827e7ecfa57a0f6e1cfd2449eabbc04fabcc16e4b3ad0f59f7a2d08f5d2fd063
MD5 6e774e55782f78f6ce6d68aefa335f90
BLAKE2b-256 6b1e31e5ea70966af4af507efd1c44240df5f09db73b6a04bdcb582377b9d870

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 7497ea5124523bae7c05726e38faa9fe2f6e64c2423f96f0e4a00078d8c1b9db
MD5 a6f4af07e03baa013747fbdba463b4fe
BLAKE2b-256 6d524e3f4dfd44edb425e43d4a4400308c564750b7f538fb625ca74c05e334fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp310-cp310-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 c0e7768e2143b842f5833857bbcd0ba28b0022028654ca5be395b7320b548460
MD5 c3d713d1edc567e9e59e51589ec2373b
BLAKE2b-256 1f66e9d05f2e6d496d60cc7264a64d73d342bd099f164a7cdf2d57386bed4cce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1c5f78aeccf2ce4580cd373f50c20b3e6279a594d6fb827266dbceede9dd8c92
MD5 668eee48cff0d9e3ed2b681953130942
BLAKE2b-256 5bb35a910bcad7295a7198619540a4d879e447e5e0bf391a18f26e4f6bbd86d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 216.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.0.4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 ae8334787aabb41b947d203c4430f3589d587b2d65809bac80850dbdc65fcea7
MD5 fd4ddd88c09db388c6cfb80392fea4a2
BLAKE2b-256 d1bc17ecfd5e1788901f0dce1b4c4e9e328013c5e85b854958e53054fcb7890b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 252.7 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.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7dfc36328b9dcd36ab2ba6c1d3438fa8503d9f375fa29786606dcca43fd0c94c
MD5 89834deb51c94ab61a6482d45af298db
BLAKE2b-256 2900c653b5d337db22a5d5cd361828169c182a1dbe55cf339d0b9731c5e9a29d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyroaring-1.0.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 203.1 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.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 310495c93d8e97b07de9024b6439215a78a5cc165e103a7cda7bf183572a4329
MD5 ac98e1781beefd1df7d30b7ead1f4b50
BLAKE2b-256 540508a17f5568f3cd3680dcbf4f4314c6071ab3f82c8999f86a36c7dd222f9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a438455b90bf28ea5939ea35af8926e944f9c1480dcce3feea38a0239fe6629
MD5 b8311791c68fe02d2c175631aa582ef0
BLAKE2b-256 52c7e40ecc9bd5c7d3c723b63563966ade47fe0ed6aa81ed85bdb3acca960fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3487b1531f3532f8a024a5b8a9fac97bd1696c4df2a0ca92aa9e07009fcd0a9c
MD5 8c95f88669e30b9d5fd0f848cf9e60fd
BLAKE2b-256 9aa113fe01e90e31c135a2b34d87b2f66a87bc3ade61d968276b3128d3878e16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 598f4f4f2d61f2c5e5e64319faa03866397ab74a9bb7ef99d14ecd9f1a768166
MD5 b62e18b7deae14c1f0a9ca01e0f145a6
BLAKE2b-256 41dd4898378a555b218630a6d5be8e278d19b24b356075ec92e03e0c8ea090c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c67b59f5f794e3b8262b89148a2662199a11aac4169cd5515c6dc74efa7a3447
MD5 89a322eab8a11381528cb52f109204f1
BLAKE2b-256 2abe9de29d2ec8080e8bff0ba44f2429e30025f4c838d526b9b315756e17c3cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cac139cbeb1941760a9568d742d29bd31eaa2ea7bb6cf54757d14be4498145b9
MD5 5e1746770590af983b639450fb349c08
BLAKE2b-256 afa59f09bdb25c2bd58936419598e4ded328947c929a2fbaa5a8acd4ce47ff53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0f8e82d665385033eef1794d96a34cfb34da76fa6896d49756510f2f32a0c218
MD5 c2f7c5b0453fd75131a29eb1fd243f8d
BLAKE2b-256 9de76f3570a34bafa1edbfef87b4ce4eb923fb3249141f9e18eed46ef50ad7fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 474b25774e0ea8e36ad3f811dbec6183ba4bcf93ee95674a14a4ae96932f0ffd
MD5 4c40ea70d7c4d75978d763ea15065450
BLAKE2b-256 3f3942e515d778abcbfde8e3efd4e3a700d01d9577d88a063f7df66b1ce32fba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp39-cp39-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 c461121b1ee5462ca0da0e5f67d836f04d29b140e4b26969647347e2e89bc058
MD5 98867bdd2ad815241936fc4e99d41c80
BLAKE2b-256 c9d12686989628cc6fdd37a2ccdd8a89f38b4c7f2d15e9d57a271b524479dac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyroaring-1.0.4-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 457dbadc044ad5ceb65dbdbc9aabc2ef557d4177353a7705fbe786a8336aba81
MD5 7ccbe37213061e727f8caefdb5800f59
BLAKE2b-256 caddfe18c9eff364ab5d85ca5b5db408faddb13ca6c99211718c7c7c18fca689

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