Skip to main content

python binding for cbitset

Project description

✨ pybitset ✨

The python binding for cbitset

pypi python implementation wheel license action

install

pip install pybitset

Usage

from pybitset import BitSet

b= BitSet()
for i in range(1000):
    b.set(3*i)

for v in b:
    print(v)
  • use BITSET_USE_CFFI env var to specify a backend

Public functions

class BitSet:
    def __init__(self) -> None: ...
    def __del__(self) -> None: ...
    @staticmethod
    def from_ptr(ptr) -> BitSet: ...
    def clear(self) -> None: ...
    def fill(self) -> None: ...
    def copy(self) -> BitSet: ...
    def resize(self, newarraysize: int, padwithzeroes: bool) -> bool: ...
    def size_in_bytes(self) -> int: ...
    def size_in_bits(self) -> int: ...
    def size_in_words(self) -> int: ...
    def grow(self, newarraysize: int) -> bool: ...
    def trim(self) -> bool: ...
    def shift_left(self, s: int) -> None: ...
    def shift_right(self, s: int) -> None: ...
    def set(self, i: int) -> None: ...
    def set_to_value(self, i: int, flag: bool) -> None: ...
    def get(self, i: int) -> bool: ...
    def count(self) -> int: ...
    def minimum(self) -> int: ...
    def maximum(self) -> int: ...
    def inplace_union(self, b2: BitSet) -> bool: ...
    def union_count(self, b2: BitSet) -> int: ...
    def inplace_intersection(self, b2: BitSet): ...
    def intersection_count(self, b2: BitSet) -> int: ...
    def disjoint(self, b2: BitSet) -> bool: ...
    def intersect(self, b2: BitSet) -> bool: ...
    def contains_all(self, b2: BitSet) -> bool: ...
    def inplace_difference(self, b2: BitSet) -> None: ...
    def difference_count(self, b2: BitSet) -> int: ...
    def inplace_symmetric_difference(self, b2: BitSet) -> bool: ...
    def symmetric_difference_count(self, b2: BitSet) -> int: ...
    def __iter__(self): ...
    def for_each(self, func) -> bool: ...
    def print(self) -> None: ...

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

pybitset-0.0.2-pp310-pypy310_pp73-win_amd64.whl (130.0 kB view details)

Uploaded PyPy Windows x86-64

pybitset-0.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (144.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pybitset-0.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (140.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pybitset-0.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (131.6 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pybitset-0.0.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (135.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pybitset-0.0.2-pp39-pypy39_pp73-win_amd64.whl (129.9 kB view details)

Uploaded PyPy Windows x86-64

pybitset-0.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (144.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pybitset-0.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (140.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pybitset-0.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (131.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pybitset-0.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (135.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pybitset-0.0.2-pp38-pypy38_pp73-win_amd64.whl (129.5 kB view details)

Uploaded PyPy Windows x86-64

pybitset-0.0.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (144.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pybitset-0.0.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (139.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pybitset-0.0.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl (130.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pybitset-0.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (135.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pybitset-0.0.2-cp312-cp312-win_amd64.whl (138.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

pybitset-0.0.2-cp312-cp312-win32.whl (131.1 kB view details)

Uploaded CPython 3.12 Windows x86

pybitset-0.0.2-cp312-cp312-musllinux_1_1_x86_64.whl (161.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

pybitset-0.0.2-cp312-cp312-musllinux_1_1_aarch64.whl (155.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

pybitset-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (159.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pybitset-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (154.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pybitset-0.0.2-cp312-cp312-macosx_11_0_arm64.whl (140.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pybitset-0.0.2-cp312-cp312-macosx_10_9_x86_64.whl (146.6 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pybitset-0.0.2-cp312-cp312-macosx_10_9_universal2.whl (202.6 kB view details)

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

pybitset-0.0.2-cp311-cp311-win_amd64.whl (138.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

pybitset-0.0.2-cp311-cp311-win32.whl (130.5 kB view details)

Uploaded CPython 3.11 Windows x86

pybitset-0.0.2-cp311-cp311-musllinux_1_1_x86_64.whl (161.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pybitset-0.0.2-cp311-cp311-musllinux_1_1_aarch64.whl (156.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

pybitset-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (158.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pybitset-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (153.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pybitset-0.0.2-cp311-cp311-macosx_11_0_arm64.whl (139.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pybitset-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl (145.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pybitset-0.0.2-cp311-cp311-macosx_10_9_universal2.whl (201.3 kB view details)

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

pybitset-0.0.2-cp310-cp310-win_amd64.whl (138.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

pybitset-0.0.2-cp310-cp310-win32.whl (130.5 kB view details)

Uploaded CPython 3.10 Windows x86

pybitset-0.0.2-cp310-cp310-musllinux_1_1_x86_64.whl (161.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pybitset-0.0.2-cp310-cp310-musllinux_1_1_aarch64.whl (156.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pybitset-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (158.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pybitset-0.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (154.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pybitset-0.0.2-cp310-cp310-macosx_11_0_arm64.whl (139.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pybitset-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl (144.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pybitset-0.0.2-cp310-cp310-macosx_10_9_universal2.whl (199.9 kB view details)

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

pybitset-0.0.2-cp39-cp39-win_amd64.whl (139.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

pybitset-0.0.2-cp39-cp39-win32.whl (131.1 kB view details)

Uploaded CPython 3.9 Windows x86

pybitset-0.0.2-cp39-cp39-musllinux_1_1_x86_64.whl (162.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pybitset-0.0.2-cp39-cp39-musllinux_1_1_aarch64.whl (157.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pybitset-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (159.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pybitset-0.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (155.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pybitset-0.0.2-cp39-cp39-macosx_11_0_arm64.whl (140.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pybitset-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl (145.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pybitset-0.0.2-cp39-cp39-macosx_10_9_universal2.whl (201.3 kB view details)

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

pybitset-0.0.2-cp38-cp38-win_amd64.whl (139.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

pybitset-0.0.2-cp38-cp38-win32.whl (131.2 kB view details)

Uploaded CPython 3.8 Windows x86

pybitset-0.0.2-cp38-cp38-musllinux_1_1_x86_64.whl (162.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pybitset-0.0.2-cp38-cp38-musllinux_1_1_aarch64.whl (157.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pybitset-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (159.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pybitset-0.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (155.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pybitset-0.0.2-cp38-cp38-macosx_11_0_arm64.whl (140.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pybitset-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl (145.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pybitset-0.0.2-cp38-cp38-macosx_10_9_universal2.whl (201.9 kB view details)

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

File details

Details for the file pybitset-0.0.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6248281df0f0e15370b386827db41d09ea320537cd634dd270e3d5b5cfbb1d8e
MD5 f638a0207cfee382c85bae11803c9190
BLAKE2b-256 66797d825f8e1d4dacfacdd01a0fde80b64498a4dd9478892dd8e3d5f39bf44b

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c12c4914af80066904bdf9ae7ed97678ab51fa855c3b728a8289637dd8e7bb5
MD5 5a1f061b134b83a51f97b4483f71f6f9
BLAKE2b-256 eab5bd1da5be5ffbfdc1dffe4009fa78bcc37082033affde3990fea74ed9fd82

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b8cf8ab33fdff585ea7204d49298f7a9cfaa4612e609b35a7a3e6869413af5f
MD5 0733eb9ba837e1a7f02020523e90f65a
BLAKE2b-256 cd5a034e26e7b9c37296c86b61bdf4dd34027bb1924fb718daa9a1da0ff19a83

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d587ba2728ce0395477fef85491441db3c5e1638ae01620f77a4f46ae1f4935
MD5 7bcd2cb329b2cd23892d379b623ce765
BLAKE2b-256 5c661fff2681a657d2f0648acc94405d9961e9f7aebbfbbe21b93af0475fc1f1

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3db8990d3863ef32f08553cea66b16eef3ca057b60bfc23c20d6ae937b1333b0
MD5 c0f8b6fd1ea77a0f13f6748a3545a1ac
BLAKE2b-256 18187fde008d1c69e959b480294efa54e02fe18e3c57b8229ab7f76165aff494

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d39ccae2b150080f0e3a69fa30f93d7ccfda0ac9c266df2643d14e7e5689b007
MD5 34c7c0eb2b83a836bd6a90aad8d44bab
BLAKE2b-256 99f0cc9ff40fa9ab33439a14e86f57e1ad2db03bf4dc9cde5dda016c7c9825a9

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbf82e71ec9bbf0bdc39b27d78dfb39fb23f405f1e4ffd15e01c4f38f04583c8
MD5 93fed45bc6d428ade72c3073709bc19a
BLAKE2b-256 9abb4b8736fa535517e8ec5b980a6742457a8977aeb2c8e1b7b6dc7f1aa07b7f

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17136166b6130a981fb3d5101afad60c5fad706138510bc8defcc2b63d1b0a9d
MD5 53697f5bb0b153dda2fff8203a7cb676
BLAKE2b-256 70fcec3fa3124f626ced3557c6ae6b9ea8b3878ad816133001406e2bbad71ea4

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3143687f2fcb7ebcbfe81b2694dde508a9db263e69e5dc280b7b8844ca079acc
MD5 999b72baad733df4f47c6ee617b8d469
BLAKE2b-256 afdaea61c17b8d9da0450cecdae225b1f4a8c5be30a9dc745fdd224a0a004eed

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9899fa7d275116ddea78ac2b6bde5dc569dcdcda10c8054149ac0723a09d5fa
MD5 054b85ef7eae78e513869c3dcd83d74f
BLAKE2b-256 78cf19bb01b8a3a88670b4414ffa2e0022fd1137d8061e9f2a412375d842203a

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 578ea9af870bd2ecd21bbe5c080cfa8cd316d9368cd26c5f3e2ae22ca83b1302
MD5 d9ca0c569d93292c768b4919801156cd
BLAKE2b-256 1c36469004e0860ae25dd70cd8a96ff3ce17bd1bfffd50ac029fab9862c044e2

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4876515289aaef1f054cde5527e0e02646d0d0b656cd0c7a6c521ac996929411
MD5 6b505013fbce85743f9a774a24f7e132
BLAKE2b-256 3a3e030db67f047b9476bd86524abfb38dc7b0d6b9b2f53e50cee8bc47a1c019

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6adba55daebfc8a707278efce29519eb554f18b61e556b36ee629fdacc6f5831
MD5 4b6717a9ebf4370be543e3df687b0910
BLAKE2b-256 2384f4c1dab998fb29c10678eac35e8dadf9ed417e5b20b914a297766a509b17

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aee2cf193ef27749e824519e4951aa8606a51d45a0187b1407f5cc59187303df
MD5 2ecb9a7b35ad72f7dd499dcd33d492a7
BLAKE2b-256 dfff7a29eb9701c9636345d11331448c5da4b4a282ed1b558d8f7b0ab35e7c2a

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05980048db023e259cbccccbdf2987a63d6f0066d160cbd956195e409b3193b7
MD5 0641dac0433c4eaa8740ac7bee05ee1b
BLAKE2b-256 a30d51f536483e0bf8e8caa8e52e805264b0afd9d625c89c87d233aa1220cfbd

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pybitset-0.0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 138.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for pybitset-0.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d6b6f3787a52c66c31c5ed5b05b1b10a269155cf305547f992af2fe10492744f
MD5 b99c26f16a0c29b18f35a61b44d5a271
BLAKE2b-256 360e8a259d8584a1e42e9e421e95801a10c2ecf7399ec920f1c07df7eeb52629

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: pybitset-0.0.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 131.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for pybitset-0.0.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5b7df9882a51a05a7bb69ed882ddedf8cb7c38b820d45b7e471e7aa4c33e4ebb
MD5 cb1e254ffcc8d643bed166f146f58fa3
BLAKE2b-256 17c279bc2c68beb51a7b5c2a0d4b39b89853e7e4e5239d27598ddd7c6a33cd80

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8254b87c5767e47d928969fd65dd43ca98beb364243a5e2508ffcaf1577b9164
MD5 12379d2bc557d8c393821763dbfe9569
BLAKE2b-256 17c51b5c52cecd1ab1b85c56bce33c8a1f8d3fa566c8e592917521cd175e4983

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3a8a68df24ab810fcdb8356dd8b49b437e5e3737146f16cda18eaa049c8e1bd2
MD5 4bb0763d24219489e4cf897bdfd90bf1
BLAKE2b-256 ab470c2fa9b90879b441973cf17f021b153a66a9f67516ed6ccffb2e3142ca75

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb4a074b270d731a27db5cf7f5f2f11058c444d69c1c975779eb7318ab21e2c4
MD5 418ff184d11a030a3c86aec91011fc76
BLAKE2b-256 c428effe740ee83be4c096916c693e0fe3c016f0387cfbb051f6e2e4f8b0f5a8

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 999f1c66a1fe9cad49bb525d9fdee5aa2f3ed1a3afe74736052cb3d86e06ca34
MD5 4cc7d2daad16a29af586333e119a1ba7
BLAKE2b-256 b5d7e283d96def637cda4ce5f8d44e6ae6e4abb4139c5a93eb77661243a56700

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95dcf37d534bec491595e0a5485b2ef097a3594b06da6bb4a2d510bea611e755
MD5 60fed567cf5f2b1bbdf8d3c5858fdbe6
BLAKE2b-256 27e5e04d9a3521cbaea1d5b9c1870bc2ffb68ce4beedac52fc3b933984cccf5f

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3bca108d00e39316da9bd2b16546a80618bd8f9e0bd31fe140b242d2b92473f
MD5 dfb2375f427f0bee0ff479dbe3198ce0
BLAKE2b-256 21758b0b9f000fc98dc67795feba1559781855727f5e86e603ebb7305a5a2606

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bd59dc73db0c805a77e1c86315c962105b024258354157b40f0de23d69f968a9
MD5 a2538a42c8e22b0d24758f27b29d57d5
BLAKE2b-256 06dd0b67e523845af6bf4b82a87077fc756083485e54d5d53ffe2dd758a5c1eb

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pybitset-0.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 138.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for pybitset-0.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 62d77753a0ac3da3d3703da93ceceef81fd1ccd32406e3c30cc70116cfda0310
MD5 655acd68addaa393191f2116a54e5e78
BLAKE2b-256 c706da52c689a39281e126bd3763d176c33511e8f5826b0533e14e96f42150d1

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: pybitset-0.0.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 130.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for pybitset-0.0.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 70bb9c32abc54565c8da51f7e7d327931327aba5b454eea354130e2165e0ced0
MD5 8ba44b9625afe7ebabc1b303dd7402e7
BLAKE2b-256 f6bbb8623b3d877cd836cf9bcdec0ba2b61aaecdf91da1c5ad433c320359f7dc

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eba4db99f7c74becba72e71b1cc008c3620a6e4cbbcc0d688f9c6b4f763b15ac
MD5 b4a822e63ef989350f34114701a0b355
BLAKE2b-256 73b9c1038e90c295e4fc1593d2fbca35584074b9552290b04d8d1a883e17005d

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0288d7935866f1ae8cac13ed8ff8c7845ddea128a663cedc7ccd74c1705058a9
MD5 13095046405b794297f16b944188011e
BLAKE2b-256 4fbfe5804b04acb09514b22efa3f5cc03a9a68096ba3bf371631ce65af535703

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7371c96514a6bb8eea9f715b45055cf0b24ed20f7d46454172a60c1529f69f5
MD5 62dd97c6f99a5274de818800b87014d0
BLAKE2b-256 b8bf475b3ac8f41db6f8990e7a9501fe2bb8a41f5254b72ed13316630aa3d88c

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7dec3ae0fc674be8777765f77fc0ad0f72a3ef242b2c5b87b4b7fe2bb7e052b
MD5 63b85da19995c624068f58247e3be8d4
BLAKE2b-256 06dbd07a59433894b079821adae3f733a14a759c3d95932ba01e3d7d38d084ae

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83632de34844a1f7425ba9838877f427c038cfbd69e21f31d57905d0fc1be16b
MD5 a59cc19b2a47b06f957fe8031659b4da
BLAKE2b-256 1b6cedfd789876d6c5915d61a397ddb99a45c9ecbcdbbd1bbc20c64395b7f8b1

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72795468c0be25b5b544f274717019d144592e04ff95859af3b1cddb4ed67bb7
MD5 074630734e7594fba475c36ea9644b18
BLAKE2b-256 5d3ff87effd3bac3807940e0167dc07fcb1712db46757600d48bbedb60a5eb3d

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b318ef6d988a7fb7cd9c46acf10edfc4a8744138dd6339040e64f159237d3be1
MD5 019d9702d023ff1c08ff930b01204f67
BLAKE2b-256 d14c9b1442e5cf5c6dedbe9002841fd37ab7cbbabff79f784cdbc62d52c99142

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pybitset-0.0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 138.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for pybitset-0.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8ea65c1cf9e6cf63c90247cbaec6896ddfde1bfd68434a0f983804f2782321ec
MD5 0f48f4f39262f81af7aad856dd7cce77
BLAKE2b-256 fde6215ae26607bdea624ea94c8a8fd014c87085a1dd4a13447930579c877c5c

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: pybitset-0.0.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 130.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for pybitset-0.0.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6129b6f87be627518bdac6dbf24e73b75ffbd349f630fc20a83acaf02d50f750
MD5 cd66735b2364016a0d45afe9b5089889
BLAKE2b-256 f252e44de5a700302d531eb65cfc31d115d214acd33e3775974e999588ee0218

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8e4641eb34da3a97acea7f6b73a6a9ce3ee62f52c2127d75043ad177384fd76c
MD5 21bd94260f6578ce1f6c6114c3a87f3b
BLAKE2b-256 0db0a193be2d37d491b0402b082b3ddace2f3e615e6b6b01a6077157584897e1

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8e5cc572340780fdc46d2080990828e0c25a10901599a11a3fd0dd8c8b16f7be
MD5 0883f236f80689d006042763f8900043
BLAKE2b-256 92c5483a01c5769f894549222f6ec9fe9519e4f8d9473816fff10c27fc5be181

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db476f014322d886dbd0dac1270b2b6f5db175eb99bc837efb1516b2b62e04ae
MD5 fc96c0e1457f954061799ed8b2d869ab
BLAKE2b-256 d587c5b54e2e648cf6ce71d00d5b0a40c3eb71b64f5834f6cb20f1dfa25043c4

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e235be3461deb6d16f6d696b91c42513e2ebc98e59936c363cb56a7445d36f83
MD5 a62e4e29048ba94e7d125499281ca1ce
BLAKE2b-256 db21392384e8dff16024f5e5fefc1580a85a63fee238bddb63761eb4f4fb4763

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6efc9065b4e9f0dbd7fc4660f9fa91f20c1362cca775447288126dcaabe81ba
MD5 7c3d3e5c622477efc0192b49c3077da9
BLAKE2b-256 46dbab9d35943d2b774801aaf3b4c2a201fca5b311dbf2bc81b14ab919786dd1

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40148d444709ec6759a8f362e8bfd82b9a7efc7586d4d5c22eff47f9d426dec4
MD5 237931dc4d1438b39dbfcf548a375de7
BLAKE2b-256 c948759106c3f9d45e0560a3577c8dd83014a459e0bb25cb38faaed51b08b3f3

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9ca44fb9ce00ec3f6c73387f6f87e7a78c5a9970d09c53d4f6b0e1b5a87cfdc1
MD5 19d391fdf88f6d001f0f7a634ce41002
BLAKE2b-256 803e92ff1b239ddb0981db15cd1bd6fcd3520b52f32f2ccbe1d82b62d762ef83

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pybitset-0.0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 139.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for pybitset-0.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 00c24b82874b2bd55bb14921f9847f74d510c3c70f2c72a29c608419bea54303
MD5 6396f6ce89ebeaebc9c694a720efcf14
BLAKE2b-256 dbcc29560795e1f4aa956f2d254f0cecf27c228442a38a806c44acbd711f970c

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: pybitset-0.0.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 131.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for pybitset-0.0.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 48b0b287cb12b20c9259ace34e653d55d67900162e0d37e88890f018bee9ce4e
MD5 724859d4773881c4e418f01568a2ab3c
BLAKE2b-256 495286d66cc8211b6ac90c67c7a56ef4b3402d5607d7694db81919f305478499

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 82fba1aec85738938d86c01e712458aa4d2a8c15fcc53e94e3fa872f2151bbec
MD5 70c86a6472300fc03437037d02fb091c
BLAKE2b-256 454fb868c404a6c2e3dc0ce646391e14c792ae0731c4083dfcdcd9afbb40e41d

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 56af53aa64ac8c0412db73c0ec0aad5c5acd179c91a91cbece8a16cb2154ac0b
MD5 5d85b59b0df05c1d4e0b052e8f8eef48
BLAKE2b-256 7de58bfeb9a3d65af71f02f46afd8425a72946e17f2849f363858fd71097fb08

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 848709eaa34e9e5e0d4d67d008c0c13723d0797561a80515f8690f1e2813a01b
MD5 a59ab464c753fac8e61c5a331a1d1b67
BLAKE2b-256 8c9ba33fbea659180aa9849a9f8ede8a3a3cc1b872982b123ccd6ec5d7507daa

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 847e2ab4f845a4c8213177922cf79c1af1839a0350bf54185df6f7526d2669a4
MD5 00c0587a687b21532c47c4f5ba34e680
BLAKE2b-256 a5c4e5766c9a18068b0f813b91aed3652ae2a1b4b386ea3d347dd86ec4da3d84

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a364160a75fe1e8381ee5eb79505f05315d0329b78518056766dc9db8d6ecb6
MD5 762536c3a7ea04d4bc5676b4ae66d826
BLAKE2b-256 9dcd59e17fa6edb7628e73b16cc9083cb39cf1bee517903a1a11d0fd1c01c6cd

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 333eda6ea32746eb3e46247c2f0f6dcf32181b407fa19788a78d7c058332bf8e
MD5 7c0c345ede02a46567f6ca844df64947
BLAKE2b-256 abca26f4e2e0f9af005d6051b0349ded1b0ab2530578ef507205455aa1e42afe

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 09eaf459c198ba41272e768afa61f2c3572ea17202f019673090232e306fc5b1
MD5 8d485b0d28d4700e3ba6eaa5604d1321
BLAKE2b-256 708f4b660ff5c7208eee320a144f6e5375bd8f3e86c2cf5a13489e010d326e85

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pybitset-0.0.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 139.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for pybitset-0.0.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 094a630f7e4c49e2f0728a9e2f1fa6fa2e0665555fb6c0bca74576cb1ec31db3
MD5 939fae45717b7a7a8fd52cce3dfebe7c
BLAKE2b-256 9b11868e5e6456b0a57c8fd668146c621a35f2e40913a3581b7b47bd4b4f18b0

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: pybitset-0.0.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 131.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for pybitset-0.0.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8eb803c380df033b519541b662ad35e42cc89da1d282fe5d90285a865c4d4c8d
MD5 290c42112d0cebe393b42d2d2b7a60ed
BLAKE2b-256 445c0c9e6d2736207632e307ec48ba2cef19db178cd019233c70833b3bad1b91

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c15ed5be81058cc2cb6bad946dae6470da15774734edd355054d571f9828f31b
MD5 a549b3b0a80a4ee50af82f722e32abd7
BLAKE2b-256 a650ad81e7527daff7b1be11e407921436488d3901db3396506b36d8a02c16b2

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 25fa5ff3ac4eb47c95f4627bfa75d6e6500cacc69d778c4b0257cc62abd4d41d
MD5 94df80c866ed53f8fa1d0685d3750e15
BLAKE2b-256 a3741441acb6018d40c8bf32b33fe5d7d3a4f04893f5e1a66336d4791548689b

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5623f26e1ddbeb3e7c79a77f6aedf85097c7bb2ed0ccba162ccdbfb837a0f9e
MD5 3fd271ca7e8cccce07daeba1ce513c22
BLAKE2b-256 90d6904c14057587f295d2088e8393e00776e132dec428b9fb0fb8470af1e101

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b2c71c1fb9c835784cd576224c0202ec05f50342e348a98967181199c5ab149
MD5 28410fe1ec4c89a109e3a25def16e772
BLAKE2b-256 99b57dee981daf4a21e8d9a173406ac03db17d294e1aecae7a8932f7c2132c4e

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64249718ed9c8cf0dfd896b6fd05d9d31e1d145bf580779814bef9ec8e6a37d8
MD5 383c6f6ace25f05dc38d9c2b1684495b
BLAKE2b-256 23975582210d8f24c7e5ff98064ea9da338763fe9be74df9e5c1891340be495e

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f84d4fcedb954abd3aa2655b899d8e015d19851faca38ea993c9ae4970d990ad
MD5 091fa09dbe5fa0302556959394bf3504
BLAKE2b-256 3ab31b041a2d67f49a939bef5916cb05f94fc47e88fc6bf1467d8fd0357c9eba

See more details on using hashes here.

File details

Details for the file pybitset-0.0.2-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pybitset-0.0.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4a25a2bfed45b0d03eb7f4a1f980511d6160072f5304a3f9e1d8e295275280c4
MD5 35a3b8dee204ff295b473c32e316219a
BLAKE2b-256 e062ac700b402aecee6e813440bfa2136745dd647009ee126c8aa332db140ba1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page