Skip to main content

About

This module is intended to have a similar interface as the python struct module, but working on bits instead of primitive data types (char, int, …).

Project homepage: https://github.com/eerimoq/bitstruct

Documentation: https://bitstruct.readthedocs.io

Installation

pip install bitstruct

Performance

Parts of this package has been re-implemented in C for faster pack and unpack operations. There are two independent C implementations; bitstruct.c, which is part of this package, and the standalone package cbitstruct. These implementations are only available in CPython 3, and must be explicitly imported. By default the pure Python implementation is used.

To use bitstruct.c, do import bitstruct.c as bitstruct.

To use cbitstruct, do import cbitstruct as bitstruct.

bitstruct.c has a few limitations compared to the pure Python implementation:

  • Integers and booleans must be 64 bits or less.

  • Text and raw must be a multiple of 8 bits.

  • Bit endianness and byte order are not yet supported.

  • byteswap() can only swap 1, 2, 4 and 8 bytes.

See cbitstruct for its limitations.

MicroPython

The C implementation has been ported to MicroPython. See bitstruct-micropython for more details.

Example usage

A basic example of packing and unpacking four integers using the format string 'u1u3u4s16':

>>> from bitstruct import *
>>> pack('u1u3u4s16', 1, 2, 3, -4)
b'\xa3\xff\xfc'
>>> unpack('u1u3u4s16', b'\xa3\xff\xfc')
(1, 2, 3, -4)
>>> calcsize('u1u3u4s16')
24

An example compiling the format string once, and use it to pack and unpack data:

>>> import bitstruct
>>> cf = bitstruct.compile('u1u3u4s16')
>>> cf.pack(1, 2, 3, -4)
b'\xa3\xff\xfc'
>>> cf.unpack(b'\xa3\xff\xfc')
(1, 2, 3, -4)

Use the pack into and unpack from functions to pack/unpack values at a bit offset into the data, in this example the bit offset is 5:

>>> from bitstruct import *
>>> data = bytearray(b'\x00\x00\x00\x00')
>>> pack_into('u1u3u4s16', data, 5, 1, 2, 3, -4)
>>> data
bytearray(b'\x05\x1f\xff\xe0')
>>> unpack_from('u1u3u4s16', data, 5)
(1, 2, 3, -4)

The unpacked values can be named by assigning them to variables or by wrapping the result in a named tuple:

>>> from bitstruct import *
>>> from collections import namedtuple
>>> MyName = namedtuple('myname', ['a', 'b', 'c', 'd'])
>>> unpacked = unpack('u1u3u4s16', b'\xa3\xff\xfc')
>>> myname = MyName(*unpacked)
>>> myname
myname(a=1, b=2, c=3, d=-4)
>>> myname.c
3

Use the pack_dict and unpack_dict functions to pack/unpack values in dictionaries:

>>> from bitstruct import *
>>> names = ['a', 'b', 'c', 'd']
>>> pack_dict('u1u3u4s16', names, {'a': 1, 'b': 2, 'c': 3, 'd': -4})
b'\xa3\xff\xfc'
>>> unpack_dict('u1u3u4s16', names, b'\xa3\xff\xfc')
{'a': 1, 'b': 2, 'c': 3, 'd': -4}

An example of packing and unpacking an unsigned integer, a signed integer, a float, a boolean, a byte string and a string:

>>> from bitstruct import *
>>> pack('u5s5f32b1r13t40', 1, -1, 3.75, True, b'\xff\xff', 'hello')
b'\x0f\xd0\x1c\x00\x00?\xffhello'
>>> unpack('u5s5f32b1r13t40', b'\x0f\xd0\x1c\x00\x00?\xffhello')
(1, -1, 3.75, True, b'\xff\xf8', 'hello')
>>> calcsize('u5s5f32b1r13t40')
96

The same format string and values as in the previous example, but using LSB (Least Significant Bit) first instead of the default MSB (Most Significant Bit) first:

>>> from bitstruct import *
>>> pack('<u5s5f32b1r13t40', 1, -1, 3.75, True, b'\xff\xff', 'hello')
b'\x87\xc0\x00\x03\x80\xbf\xff\xf666\xa6\x16'
>>> unpack('<u5s5f32b1r13t40', b'\x87\xc0\x00\x03\x80\xbf\xff\xf666\xa6\x16')
(1, -1, 3.75, True, b'\xff\xf8', 'hello')
>>> calcsize('<u5s5f32b1r13t40')
96

An example of unpacking values from a hexstring and a binary file:

>>> from bitstruct import *
>>> from binascii import unhexlify
>>> unpack('s17s13r24', unhexlify('0123456789abcdef'))
(582, -3751, b'\xe2j\xf3')
>>> with open("test.bin", "rb") as fin:
...     unpack('s17s13r24', fin.read(8))
...
...
(582, -3751, b'\xe2j\xf3')

Change endianness of the data with byteswap, and then unpack the values:

>>> from bitstruct import *
>>> packed = pack('u1u3u4s16', 1, 2, 3, 1)
>>> unpack('u1u3u4s16', byteswap('12', packed))
(1, 2, 3, 256)

A basic example of packing and unpacking four integers using the format string 'u1u3u4s16' using the C implementation:

>>> from bitstruct.c import *
>>> pack('u1u3u4s16', 1, 2, 3, -4)
b'\xa3\xff\xfc'
>>> unpack('u1u3u4s16', b'\xa3\xff\xfc')
(1, 2, 3, -4)

Contributing

  1. Fork the repository.

  2. Install prerequisites.

    pip install -r requirements.txt
  3. Implement the new feature or bug fix.

  4. Implement test case(s) to ensure that future changes do not break legacy.

  5. Run the tests.

    make test
  6. Create a pull request.

Download files

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

Source Distribution

bitstruct-8.22.2.tar.gz (35.7 kB view details)

Uploaded Source

Built Distributions

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

bitstruct-8.22.2-cp315-cp315t-win_arm64.whl (36.5 kB view details)

Uploaded CPython 3.15tWindows ARM64

bitstruct-8.22.2-cp315-cp315t-win_amd64.whl (36.8 kB view details)

Uploaded CPython 3.15tWindows x86-64

bitstruct-8.22.2-cp315-cp315t-win32.whl (34.9 kB view details)

Uploaded CPython 3.15tWindows x86

bitstruct-8.22.2-cp315-cp315t-musllinux_1_2_x86_64.whl (86.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

bitstruct-8.22.2-cp315-cp315t-musllinux_1_2_armv7l.whl (83.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

bitstruct-8.22.2-cp315-cp315t-musllinux_1_2_aarch64.whl (87.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

bitstruct-8.22.2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (87.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

bitstruct-8.22.2-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (89.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

bitstruct-8.22.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (89.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bitstruct-8.22.2-cp315-cp315t-macosx_11_0_arm64.whl (39.0 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

bitstruct-8.22.2-cp315-cp315t-macosx_10_15_x86_64.whl (38.6 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

bitstruct-8.22.2-cp315-cp315-win_arm64.whl (36.2 kB view details)

Uploaded CPython 3.15Windows ARM64

bitstruct-8.22.2-cp315-cp315-win_amd64.whl (36.6 kB view details)

Uploaded CPython 3.15Windows x86-64

bitstruct-8.22.2-cp315-cp315-win32.whl (34.7 kB view details)

Uploaded CPython 3.15Windows x86

bitstruct-8.22.2-cp315-cp315-musllinux_1_2_x86_64.whl (81.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

bitstruct-8.22.2-cp315-cp315-musllinux_1_2_armv7l.whl (79.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

bitstruct-8.22.2-cp315-cp315-musllinux_1_2_aarch64.whl (82.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

bitstruct-8.22.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (82.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

bitstruct-8.22.2-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (87.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

bitstruct-8.22.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (83.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bitstruct-8.22.2-cp315-cp315-macosx_11_0_arm64.whl (38.6 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

bitstruct-8.22.2-cp315-cp315-macosx_10_15_x86_64.whl (38.4 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

bitstruct-8.22.2-cp314-cp314t-win_arm64.whl (36.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

bitstruct-8.22.2-cp314-cp314t-win_amd64.whl (36.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

bitstruct-8.22.2-cp314-cp314t-win32.whl (35.0 kB view details)

Uploaded CPython 3.14tWindows x86

bitstruct-8.22.2-cp314-cp314t-musllinux_1_2_x86_64.whl (85.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

bitstruct-8.22.2-cp314-cp314t-musllinux_1_2_armv7l.whl (81.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

bitstruct-8.22.2-cp314-cp314t-musllinux_1_2_aarch64.whl (86.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

bitstruct-8.22.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (85.8 kB view details)

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

bitstruct-8.22.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (88.2 kB view details)

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

bitstruct-8.22.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (87.7 kB view details)

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

bitstruct-8.22.2-cp314-cp314t-macosx_11_0_arm64.whl (38.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

bitstruct-8.22.2-cp314-cp314t-macosx_10_15_x86_64.whl (38.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

bitstruct-8.22.2-cp314-cp314-win_arm64.whl (36.2 kB view details)

Uploaded CPython 3.14Windows ARM64

bitstruct-8.22.2-cp314-cp314-win_amd64.whl (36.6 kB view details)

Uploaded CPython 3.14Windows x86-64

bitstruct-8.22.2-cp314-cp314-win32.whl (34.7 kB view details)

Uploaded CPython 3.14Windows x86

bitstruct-8.22.2-cp314-cp314-musllinux_1_2_x86_64.whl (81.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

bitstruct-8.22.2-cp314-cp314-musllinux_1_2_armv7l.whl (78.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

bitstruct-8.22.2-cp314-cp314-musllinux_1_2_aarch64.whl (81.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

bitstruct-8.22.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (81.8 kB view details)

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

bitstruct-8.22.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (86.2 kB view details)

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

bitstruct-8.22.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (82.6 kB view details)

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

bitstruct-8.22.2-cp314-cp314-macosx_11_0_arm64.whl (38.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

bitstruct-8.22.2-cp314-cp314-macosx_10_15_x86_64.whl (38.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

bitstruct-8.22.2-cp313-cp313-win_arm64.whl (35.7 kB view details)

Uploaded CPython 3.13Windows ARM64

bitstruct-8.22.2-cp313-cp313-win_amd64.whl (36.2 kB view details)

Uploaded CPython 3.13Windows x86-64

bitstruct-8.22.2-cp313-cp313-win32.whl (34.3 kB view details)

Uploaded CPython 3.13Windows x86

bitstruct-8.22.2-cp313-cp313-musllinux_1_2_x86_64.whl (81.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

bitstruct-8.22.2-cp313-cp313-musllinux_1_2_armv7l.whl (78.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

bitstruct-8.22.2-cp313-cp313-musllinux_1_2_aarch64.whl (81.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bitstruct-8.22.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (82.0 kB view details)

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

bitstruct-8.22.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (86.3 kB view details)

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

bitstruct-8.22.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (82.6 kB view details)

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

bitstruct-8.22.2-cp313-cp313-macosx_11_0_arm64.whl (38.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bitstruct-8.22.2-cp313-cp313-macosx_10_13_x86_64.whl (38.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

bitstruct-8.22.2-cp312-cp312-win_arm64.whl (35.7 kB view details)

Uploaded CPython 3.12Windows ARM64

bitstruct-8.22.2-cp312-cp312-win_amd64.whl (36.2 kB view details)

Uploaded CPython 3.12Windows x86-64

bitstruct-8.22.2-cp312-cp312-win32.whl (34.3 kB view details)

Uploaded CPython 3.12Windows x86

bitstruct-8.22.2-cp312-cp312-musllinux_1_2_x86_64.whl (81.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bitstruct-8.22.2-cp312-cp312-musllinux_1_2_armv7l.whl (78.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

bitstruct-8.22.2-cp312-cp312-musllinux_1_2_aarch64.whl (81.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bitstruct-8.22.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (82.0 kB view details)

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

bitstruct-8.22.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (87.7 kB view details)

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

bitstruct-8.22.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (82.6 kB view details)

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

bitstruct-8.22.2-cp312-cp312-macosx_11_0_arm64.whl (38.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bitstruct-8.22.2-cp312-cp312-macosx_10_13_x86_64.whl (38.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

bitstruct-8.22.2-cp311-cp311-win_arm64.whl (35.7 kB view details)

Uploaded CPython 3.11Windows ARM64

bitstruct-8.22.2-cp311-cp311-win_amd64.whl (36.1 kB view details)

Uploaded CPython 3.11Windows x86-64

bitstruct-8.22.2-cp311-cp311-win32.whl (34.3 kB view details)

Uploaded CPython 3.11Windows x86

bitstruct-8.22.2-cp311-cp311-musllinux_1_2_x86_64.whl (80.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bitstruct-8.22.2-cp311-cp311-musllinux_1_2_armv7l.whl (77.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

bitstruct-8.22.2-cp311-cp311-musllinux_1_2_aarch64.whl (81.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bitstruct-8.22.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (81.3 kB view details)

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

bitstruct-8.22.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (86.9 kB view details)

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

bitstruct-8.22.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (82.3 kB view details)

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

bitstruct-8.22.2-cp311-cp311-macosx_11_0_arm64.whl (38.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bitstruct-8.22.2-cp311-cp311-macosx_10_9_x86_64.whl (37.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

bitstruct-8.22.2-cp310-cp310-win_arm64.whl (35.7 kB view details)

Uploaded CPython 3.10Windows ARM64

bitstruct-8.22.2-cp310-cp310-win_amd64.whl (36.1 kB view details)

Uploaded CPython 3.10Windows x86-64

bitstruct-8.22.2-cp310-cp310-win32.whl (34.4 kB view details)

Uploaded CPython 3.10Windows x86

bitstruct-8.22.2-cp310-cp310-musllinux_1_2_x86_64.whl (79.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bitstruct-8.22.2-cp310-cp310-musllinux_1_2_armv7l.whl (75.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

bitstruct-8.22.2-cp310-cp310-musllinux_1_2_aarch64.whl (79.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bitstruct-8.22.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (79.7 kB view details)

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

bitstruct-8.22.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (84.4 kB view details)

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

bitstruct-8.22.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (80.6 kB view details)

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

bitstruct-8.22.2-cp310-cp310-macosx_11_0_arm64.whl (38.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bitstruct-8.22.2-cp310-cp310-macosx_10_9_x86_64.whl (37.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

bitstruct-8.22.2-cp39-cp39-win_arm64.whl (35.7 kB view details)

Uploaded CPython 3.9Windows ARM64

bitstruct-8.22.2-cp39-cp39-win_amd64.whl (36.1 kB view details)

Uploaded CPython 3.9Windows x86-64

bitstruct-8.22.2-cp39-cp39-win32.whl (34.4 kB view details)

Uploaded CPython 3.9Windows x86

bitstruct-8.22.2-cp39-cp39-musllinux_1_2_x86_64.whl (78.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

bitstruct-8.22.2-cp39-cp39-musllinux_1_2_armv7l.whl (75.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

bitstruct-8.22.2-cp39-cp39-musllinux_1_2_aarch64.whl (79.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

bitstruct-8.22.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (79.4 kB view details)

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

bitstruct-8.22.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (84.0 kB view details)

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

bitstruct-8.22.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (80.3 kB view details)

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

bitstruct-8.22.2-cp39-cp39-macosx_11_0_arm64.whl (38.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

bitstruct-8.22.2-cp39-cp39-macosx_10_9_x86_64.whl (37.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file bitstruct-8.22.2.tar.gz.

File metadata

  • Download URL: bitstruct-8.22.2.tar.gz
  • Upload date:
  • Size: 35.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2.tar.gz
Algorithm Hash digest
SHA256 ad3884a559871aa931d216ff45000b7ae29a5991af4fce1b24c7580d2169979b
MD5 bf238524e3a969277781515234a38dc9
BLAKE2b-256 bf625ae8ba2028a0efeb7ae25cbc1b6897a3b61d6d1d5b3ec9c2f66c44e6199e

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315t-win_arm64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 bcfe6e222f071fb87f3eabb1d56ad9114f11952b3d4c562c99fa37780f01b9d6
MD5 2461b1e5b7ba49c6115fbb5df8379f91
BLAKE2b-256 97e0cfbaa45c89c304c8a072e2b8f2bbb316daa06982787bf942b3bf4d79d93c

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 36.8 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 bad2c9052fd73163ca271f40acfd31077d7651c3cffa2c5097cc5b7d627a34b7
MD5 c9919eea80a3127519346621e8b4b704
BLAKE2b-256 72094a2a725863980cf2099d56bc2bf69bebffbec8c119f919b39b152613d55a

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315t-win32.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 34.9 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 9ca58cb74b13eae1368fbc3e212ddb49d4cb496348370a037f1a5c0905b7399c
MD5 9a9787f25c86a5b4df4e3d10ca2a367e
BLAKE2b-256 014343e56bdb170c5ac41c55594b24998aa83a36d789c3647b5460e58a746b05

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cbc15ae43ade0b0ea575060ef90094c7d1b0362f11667a10d00fc3a8ac378797
MD5 2578dcbbbee0f4a9960c76ea55f6240c
BLAKE2b-256 dcbff0484ad48eef1c6ca56d843d0ff69dc98f08d1a5c558d42cfa087bc2782a

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fe435f7897180b2ff1936f1ea8e462e2ae0da6371ca7f7fcf0ee5303a185bcb2
MD5 26f2b9b775afa06c4a29bfe51448c63d
BLAKE2b-256 2290395c5614b366007570a4ce4e39ab52f09055ba001e3c0184ba3cf3c0c5d3

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23ef89defc94f63eca1bfe9b4aacbe189023f79b364f20df50f0ba3e247cabac
MD5 aac0e1b9e5b97b5d00fc4d46fd7e4e1e
BLAKE2b-256 30fc433e07055eb338850d7766c6100703eb374cb473bb0f5d3e34ef0a37767d

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b586eb5588a0548ecea2384bcb4ae9064ad7e7d33217e9d25832104cc364929e
MD5 3e440d92f200e8d72a777a1a27ce86d1
BLAKE2b-256 f7d56f35f414de714a6fffcf0dcf396f8cfef4e064b65438ed5af3f9e352e950

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4fb8964f0687bfed1ca9ab61352a08318253cebd0a96433878d6ffe90a181de9
MD5 737811324b3a2b029aa16b3d6bc29bfc
BLAKE2b-256 4236ec227489e40951cc3bcf171a9f650fc3a77dda459ec66248b56e203e626f

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f19e5e91882dcd7b7b154b7df0c25a7cf1f8eaddc9357c874534809fc9a027f6
MD5 2d07bc6a152a8a0991b0da2e2333f269
BLAKE2b-256 d64170addb334e6f4100bf3c21e47af86977a51864fcce920fbb902eba3dc927

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 134b5d6a280aa50051e001b687ef348884d52f2d9cf83118048d2714c2bb28e6
MD5 d86301534c6e8509c86cc7e2c6b12f26
BLAKE2b-256 519aa84ef88b3777f8ce8a8f31e36e5211e9d0c04506841b4761593a8135b606

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 456113d39129db4955a49ad3ddc1996bbe13c6a5d7573df2c9288a06e050322f
MD5 348b4a8863db35283dcf20481e81b006
BLAKE2b-256 f371d4409453fcce7f05fa2e2693735ffe732ea7ae5d34270f49e607d3a24003

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 36.2 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 1a007a85a645c88d286152e2c62d92ebbd497d9fc2bc9c0e6deae820fa16371b
MD5 c250175d09e867ccdca574caca596874
BLAKE2b-256 f2bd75637a4b3b664b40c10d5c51876821c263c1e3085d7c34e2dbd74f5dbadf

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 36.6 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 db568dcd8009e74712717e19feea4587329e47d7b1abf75f240020b05631a989
MD5 bd1c95cbd140f115a3bfa93bae6a2542
BLAKE2b-256 aa9cadbedc9389f684abf0e923e3d421b4cb78694198de1328557974ec0fcb21

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315-win32.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp315-cp315-win32.whl
  • Upload date:
  • Size: 34.7 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 cae83409a2e6f613b7dadb58dc7db72c478b3bed19736a3527ab5c3944ef9844
MD5 0b6ab156382ed0901d78a27cfba0228b
BLAKE2b-256 520d96d4e73972249988eb7e3aed4637fc9d794fd82b903dc6a2ace8a3864ad6

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 496b63719ddef414a1c463578b93220a345c8eeaae0bfc7055b0234e33d98019
MD5 7ad40a28b9f7f7a1c90954ae822b77a5
BLAKE2b-256 54bcf530720fc1ccb1363aafa5a4ef95015cfed7a7b9a30e7abd4443022fe2d1

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ab998adf1750397a90a4e9df48e9883055753e8d935bec52f8ce2e87832b3467
MD5 4bfef8cf65b65bba70389f486ba37968
BLAKE2b-256 7296026d0f423ec77d3f544ebfee46f2ea9d27c9b2a873e25a5e728a31b96e88

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31c52775b6b1d943418d0a562065480d07b22610e59f01ca883aaead3c329d4e
MD5 ba49db0cad2831d614b344a20042464e
BLAKE2b-256 4c19b6b75ce6cea6101cdb2d9c4cf1e051ddfd32ce20bba6bfda09270a875bbf

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 215fe6f204f15e4f9890d4e07908f040f285113b2eebbf41816bfa57e458099d
MD5 ba9c96d87b4dcc044423e6a364b21f64
BLAKE2b-256 5bbca88d7713e193e695fa71df016cc977d0f4d5d6747b8637fca13ad887b04e

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1cf7ebd3f819f351db4df688254477fc456e3761bacfddcf894f7c6c124f54f2
MD5 ca803ab59a6d1f2f6dcf1018c6d775f9
BLAKE2b-256 e799126ebd5abf2f4ca417a3e10549046a7708d8447d7e9e838f6b546523b88c

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f26a04746f6fd52c10717ef965f04052f1379a4b3116088d7e5bb4bbabd7aaac
MD5 3b4119642c03b876cdf665727a0bb936
BLAKE2b-256 f8f6ef2eb8fc8ff4100de0048b30753d01fbe723b78fe55a25173226e6df3c09

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b5cae511792cc597a51f3227791fda22a32ec522e00956aa0be25bf70793c59
MD5 1a9db5bbaee70c6f763990aa984ff20b
BLAKE2b-256 2e3da1f2daad0b1f74a78e45e9c25418d78ad82349895b0d9cd6abb6533fbb27

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e541fb57007368e15369849b83cfb1f6c46f33425ce38a817f6a7bfccd749d4d
MD5 aa5447eb760aee2be69ba770f0809aa6
BLAKE2b-256 374ce7065ed98e1b9e193966cf58bb323f8237425c54273b3bc3e06f9ab1a0a1

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 6b0c926d65ae6245d42ed48c2e5c0684402d04f4960e9e804eb4e3f5c545dace
MD5 8f7e8c46d460a0f39365f7976860c249
BLAKE2b-256 ae772d698644c5610d592ebf42fb44ab497e42f2429fd9af9774dfae1d450269

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 36.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 46303ce2ae6b4276b4c3b1c1169a9517b0f889312832380699d9632071955964
MD5 9fae416159f04f4f5be25b536f883fc2
BLAKE2b-256 83bd7d1efca0807c9cc197c7fe4df1642adbdbfc8be79e224f3ed080eb45fa25

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 35.0 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 5f22a11aa5a54f9fcd2ba41fe4d917ecea189f4ef5d7a652a7af316086bd9f8f
MD5 93d33319845ae33e4341211dcde88c4a
BLAKE2b-256 0848937034a90975cc4d79f25eef4b8f12e4e2a00fb8ded8f4dc28392ec27e5d

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b11e2aa90a39955ac695b6515dbd5a0612e13922f593f0ca386a82f1e36f949e
MD5 dea669d9b22baa59dd40cea28cfa8226
BLAKE2b-256 3b7d8450e69fcde2086716bc5c043640493737b6890ddf45b1c9a576fcdfbde5

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1be0471e0b97296e7a6c170f530b3dc418d326f7cc0ac9ef2c77eeb0bf39acee
MD5 87641be12a49e3f49fa1df4c6b335540
BLAKE2b-256 7a0f6b59166acbf8540e08604340abe2f003189b02b8f31d029ee35c18f399aa

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce10fd725b4ce06f0f49da5cceb4c1fded035d2e418f26545551453f93d0838f
MD5 cd70ebec43fb3db585fdda2fc88426d1
BLAKE2b-256 4630175e29a8e5bb48aebd219b3103bcd45b077a4daa68b309dc50acb632e8b2

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79bb0b95b4aaaef7fb8a312e0c318c95b37dc459744cfdb41ee7e614c5b2db0b
MD5 3ac021bf295d2a30d93825e422b2e959
BLAKE2b-256 a087b99ccb22b5642284a995d2ffbc46e2fa3ef80175f83a6bfb3a8e2fdeec73

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 75a6f5ea462d5d76bb01ea375b39cd52aeae76ae6ea96cf754f2f07dae21fda8
MD5 8c2164fec40704cde77550a7255ba1d1
BLAKE2b-256 04d44903ecc08c18a601e8d320a2ea89fa1c86f0810f53bc59568426ca6bf5ce

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b6c9a09a81c6a651fb9d228ad9fe742f57f2304dd068e32f0140e78ffcfcc0d
MD5 58b0c9fdba8a0cc6670c9d3d7bcbb2d5
BLAKE2b-256 31642d69a5c094066ded6b1a636422fb35f9c8ec5667b7d375dc0eb16b6a5377

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5f1773d2a057293311b2d8c53f9a702f0aeed6c7b6abdfe3c71e0c85e587639
MD5 4315e5a09568f17a7154b9c03251a1b8
BLAKE2b-256 73c70af319161a3f7620d979e0fef6b0b1600d8f6e43345fa731d2ae98311088

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ac42bdd24c5381c0bd1bbc4824e41eb3d70fb8f4525888dcb5d353b2b30ae79b
MD5 a812fcc9314efe18c248806235672c71
BLAKE2b-256 a9aa70017f6dba0f8dc5ae47c734a9d2362f9b69f53909223e8e61c764989a00

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 36.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ca98ad88c200c0af262f5e1a55b7cc57c2e5fb2737f83b4c7226b20806ac9123
MD5 bf08a85b4df72a5fdbcd44201ae39ae8
BLAKE2b-256 377e4e5f2b6c66c447be20038d0d5840fbfadbb708215de3e0cbe5f553157c4a

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 36.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9c88f0fbc1c24a948cb2ea85e9dba34b382d750007de8970320d414daa622b24
MD5 2e343bffbc3b9cd748f7be1d71369c07
BLAKE2b-256 c7458f68cef60bd3d667a5d4c4d293bdc57c582bc1abe249bd22fe42f8586c0a

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 34.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0ec796c2c6096629aee0fe51dac5a4001d20765b187ebe88c96b16fca256b066
MD5 baa7c2f1861adabbccdf316045334c8f
BLAKE2b-256 e4dab5d9b1224e2f9a2555eabd5b73f11e79c9f8739a195759cca70506145cbe

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b14acb56b4b52104e38e3d111ef64420996a449399fbbc6de519880d90c3b5b
MD5 480ca30d308a01619db09338a4b71a1d
BLAKE2b-256 f1d3973d177c8aa0e48ee3f7dd64ae53de984ca9ff25c9f77cf84fa07c188698

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 729c00aa020f8197e25472140918cedb6b0907f6464ef2359279233e2a3f5dad
MD5 23b5ace68f0946074d7e94883fbf7fcc
BLAKE2b-256 d7babcad728557f466cd9c2e86431ec5c9c0e83a376e0c96adc44a42ecbfbefa

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e88c3bdc8b4eaa5b9c882c540a04826f7444cf16066a58144dd33827d17dd244
MD5 a73afa162a66c988840d1fc2f0a061ae
BLAKE2b-256 fef022522e23f98eb7019d35a43c483cbb68597bc76eaea71ca3c95652496a6a

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 095e4faa5d1911ccc78674884fe9f5f385ae99c2522ecd10dcfef5d3949e6eab
MD5 4dd2f60db8a7bf26f4fdd4813721f0cf
BLAKE2b-256 c9f19e22e7f74cb47e359c8d606c226beafedaa94c6d3903be769f5cc11db685

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 11d72acd1adf3984b587ff723855709baecd84023c27fa9203e1a2ecb5c2bef5
MD5 517effb1148548ae6ea775fac55e0fa2
BLAKE2b-256 364892f86d24087556ee0676c7d568b8c1835e4022fdcdc8467ce8c6aeffd01b

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 426064502dd915efa3c06bae0451965af5fd0226b2e1f373a0f85a5c54d1711a
MD5 68155a760228f1169d947c4b41565427
BLAKE2b-256 85be258676128f05a20ba799b59a49dcb8a75012a7b12582272f1f2ed97c7a36

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3744e35aa7d4cac716f90de4ea60d99bb74fd514f5d011ecc067168f09c4d657
MD5 58dd0e9ceb1a9d5b4c9433e28e01cb34
BLAKE2b-256 905e4d0758c76710c68d0fc2ae574026a588dc2105d5c21bd53e65792230b517

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1cb21605e8772782f560e20ce33fe3d045d9f53458b901864e8f86fde2b21f98
MD5 c25bae91bef657ff5d99654112a5b308
BLAKE2b-256 73a290d07f808c839e971be9deabb596f34d30868c29bcebfe018a7abcc13017

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 35.7 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5947c609c1e4498f8802846a2d950134068cb7075cd3e7d4c612731d79e78811
MD5 967329154810c9f807deae615051a0ae
BLAKE2b-256 0002a4de056edeb0d796db86e2343db74ffa124c12dfd20a505d3e32caa09b9d

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 36.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 95b360994126fff84de96aefcc6d59c9b77f96cba18375184ca364bfc91089f4
MD5 73f0da1d1ace97dc46f23e4007f99d67
BLAKE2b-256 d76ee06e0b78b8d23fb562bd8c32dbf8276a607cd16adec7fa9404d3357f3170

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9c16f6bd3a5f5873aa48dca039fb2c5dbee3b41baac33b9a8de78f6e3f1687dc
MD5 bb00f1cecd2d5b9ef18a402d9bf5741f
BLAKE2b-256 c8ff74d12487187779711a437ded790265b1952c2d21450be7694a2863934e97

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 921556a5c03e208737cea0b4951e891bd9f1c63679c91337b0f1e80dc01cd31f
MD5 30e9a396da12e6e14e5bf80f8c4c8d02
BLAKE2b-256 5fc45d5c52fc079c771272d28caf9da959690b78e9200de8ab751ec5589cdb73

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 948138d642e98ac297620e565479b8e045a95b678826b2ead8ed0ae1f04c70e1
MD5 ef85097aecb97ac4ac4c432fb9cf6630
BLAKE2b-256 333f6d99aab386fc24621a4ae5bd3ebc6efb58cd614289eb9a9bf24614de7364

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b4ebb68aac2caaf0071c1a2e8cd2836fdb412803192739f6b5933897910de3a6
MD5 476359550af3bb5166cd4eb30a278d14
BLAKE2b-256 41d36789661da7228ebe3c97e1eb3bfb6b0676341dd5e65c77cfd6c5a7c9e117

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35eb9c728af5f15716c7c8dd6dcf92fc21ae69f5fd2bc2f144728835660701e9
MD5 56457336b5157293d9f6870d4c4d0bd7
BLAKE2b-256 5ed5c50b388141a69ceadceb3065b2b8ba87175a62356480dfa419a577ce9b09

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ce7d10cbb2925f7998afaa7d58f8f0bc7b9aa1013c271a099ee0b0922209d785
MD5 28026516e32c53c5ba3ebc8b22022ca0
BLAKE2b-256 837a6e8ab5ef7fc97fa887d0d5a6f2722aeb57a6259493e9f5bc0bdbd34ce036

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7089a497751d54925578e3afee580adb35ebecc298266817e3a06f22aeb2bd2e
MD5 e96951bc2a1995d241e98b4d08cebb00
BLAKE2b-256 1170306397b1a828ff829871c781e6702159447a9b87fe1774ca10624beff08e

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0f83480afd256582b961905360a425d50dc884d28a362741ec72e93057320d8
MD5 508736a24c60694a6f4378321d0f70b2
BLAKE2b-256 3ff616f24aa7bffb0644f1a555a8b0a2f1f59a60aeb014e94b5f832419c568e5

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f55e8fa8a626bac0c81afee6ced698ec29fa3c25d540ed549865750bab11898c
MD5 34ab0c060e4c9d92686d9a497b67a174
BLAKE2b-256 47ddcc1666143cbe9dcf092545dae9c94d691e72ab37550fafd890ecfc086c79

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 35.7 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5efaa9dc291542dabbf94813927313cee90c912084316e90613dee4e6b4f137a
MD5 09e88f10d56fcb79d997bfb4208d943c
BLAKE2b-256 e7cce87c56c30e93464834aef3f641220579ad8342bf46448419a7c852a4bed7

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 36.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2379cb939987f660279deb2a2770e9b1900f9f51ced11f1ff3253bc463c40d76
MD5 53462c37b951118f33ae1c2563d96b64
BLAKE2b-256 3e6e789b6164b8114be8b13a6a1f6fb8488cc4593e715988ba95d13019535ec9

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8ac31f14ecc47623919dfa25538ab4d61a694ded1ac0bc144ccdc58bce0411bd
MD5 97200211bf793630db6b9279296c6ffc
BLAKE2b-256 26f003d6d23cddb5f9dd7d52271082c92e3fb7ada413db9c2fe2b80a7a95ffce

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d902969f58840bcad3b09602150a5b39b18a5c416aef9ad7c86b5bd42d8c95e
MD5 43842c20355656a2a5ba4a66e8e1ef43
BLAKE2b-256 98d53592ca05593ad15828cc5c7cc2b20dc623c695f36df9e0bfcfbf609b293d

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 70c3244bde1ffb37272eecf01e4a820c51e347d22a3c947a4af7258184462c7e
MD5 c25f0da737366a0afaef7b18eb227b65
BLAKE2b-256 9ffba29ccec0311d954079a5063582b14d393160f17730e375a07bcd21f24bae

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e51fa07acad809bd54efc1bc93fdb4f7bb56f25af4fcae68568e573f4ba3e243
MD5 9d24f4c90c2c269d05c512e44010e9c9
BLAKE2b-256 a1c72817aeedb2033b5950b49d312140cdc09560252f74e8b0be029a63c5aa21

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 39b99117d8f44893c75c9191cfdc952b42e356de2d9243996a3d16be917732e9
MD5 85494d5b1e7e4fa42a8f272dc894f36d
BLAKE2b-256 c3a9a31c084492e8e6b17468ca0c42e68d2a1540a56fb8b1eb0ceb0d50a7c04f

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5a272311cb37893df9bb1022f131996c7b92376054a5c618da55562e66b7e5ee
MD5 9cd801b925354af19ea6cdea13913186
BLAKE2b-256 e0a63c5bdf7e95cf4bf8ed38e23c067eb58fbca86a11de03a2aef0d7c40bce1b

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee8190bcee0ee325f61994ca54a38225001e7f6247095042b56e2acfb868ecc3
MD5 297c5a5426511ad971551a4f8d6e50cc
BLAKE2b-256 815aea332a87b5ab8769a97efb10997e66f21620845031068dd821aecc947ed5

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a4f79ff669d72d2b2823f3d3708599f9b2f89f916c3cf49f7e2528e2660bd61
MD5 244dec9a1cc57f72831c77bddf8e7e01
BLAKE2b-256 d8ac85602815b94dabce42ad65a1fdbf2dbc392e4624affac7cc2192de7a82a0

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 22c2607f536e623a714501b4d7f28f021648fae6c6809a9c168ae27a23f0bf8a
MD5 bed5ce385ffe697dc9c75202f4982185
BLAKE2b-256 f3ac208590ada942c7a6e954592b729e45e7d3925401065c9ab9cab3b88900fa

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 35.7 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2ac2bbb03df7598ea54d3a04be6be6e6d9e0e1a8c6a423a550c10912a8078164
MD5 aaca4f84c3786866ed9e15d53c525d27
BLAKE2b-256 98e3294eccc7c2ff392bc97273dec665180d605e5fed5a31026b0c99f9d7faa8

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3914071d2d992c878ea3d2a0f9573998605a66cd5bec13e3e1623864f2ee6b94
MD5 c72cef7a95e3f7e42d7d5670bb8b6248
BLAKE2b-256 e246061aa02f67ed5da3dc2642c7c943065832a8244812038f909770af1bf0fd

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1a2c0fa4b0340cb6e8eb5d30b05c431f4b0e97845d40549a6c83c65f641949ec
MD5 58972c61bb41d556d226c0b432ab7154
BLAKE2b-256 e193543cc91622115d42845df5cace17eeb72958e1a5c9dde034a7b6b3a27a29

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ead9768538b370ac03dee1949eb97eed18c727135bed42eaea0aa986193a340d
MD5 718f4a4b47f93a54e1936940a5d3272c
BLAKE2b-256 5e99151b9acfd81fe373f2c8c5d3b33f48ed85befba5daaa5d0c0001f99371ce

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dff54ac5c60f2d446956b60b99238e28813e439162db6265ff469c510ca4697b
MD5 59268900b7cf1e8212d5eb6989e03ffa
BLAKE2b-256 eb7049adc3b26062d1a13223ff09cf9ea36cb3567e3e33736f1680d6236492ed

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f337ae60e9ac7c898497e105f38e612212043190d5526b5a275e4f7fd086808d
MD5 5352e329d2d30d9911ce6bdf8b0dc335
BLAKE2b-256 abba4cba436e9557f8b6181cbe4bfe9c10a407f6d134e27de897d423c5858a82

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 444e99aeee2ddcf5e38a7e59910225d641ca1f1669bb4a96c42d08297669f563
MD5 c83098553217562c828b22571327c501
BLAKE2b-256 d55073f2d81ee5d2ab89a9b0e9ef3e7d3b30596a1a4eddf8e14901349033290c

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e6b6fb01c2c582124afb772f9a2a4bd95d2348e456ac9c56325de3d9f3b3b790
MD5 240c7636f28b5ac031bf8d943f38417b
BLAKE2b-256 f460a1caa1e565a056896789de2e1f631d9c6c3e7f7bba548cb218f6f42027c5

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c80acdeec15ac065c4ad5373cf0c07ca76eb9d45b5eb396e4e58b0f4dfb43f3f
MD5 552a58e1cdd5536a28a482f2707ecc09
BLAKE2b-256 349998258f78d60c25b49fd88fda369bec19d00af98af8568523f5063c919202

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6db93a3f807f72dbc9fd50f2906db512194b4f52a33e95713bd007f57c5e37e
MD5 eff7a5f607f509037f89ef3a221e6343
BLAKE2b-256 cd510f5665de7c2c6ea1240bc38812c4327947139800c2812af64f80da1a6d08

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4e7fd90171d1d525961e12cc3365cb31c8538f467792ddfb6c67647c4fb67094
MD5 0c2f34b608090d870fef032589124ba6
BLAKE2b-256 164e6b109d188164894dbbc869471671462e34777dd07decf1e2912831e6367f

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 35.7 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 1358dd530bb1b980685097835df4579b7e980023b9836efa9ad9ff9cba971ef3
MD5 78671686dbfa205cd511accbfa9cad40
BLAKE2b-256 445aade0402f3f2444405e1e0aaf3ebb519350965452df764d553d06dab35472

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 161ea23af8f478cef418b238192c261110e984dd3e29bf8ce6152ff5251cba5f
MD5 b1a888b0cdc0562d1040d365272bc030
BLAKE2b-256 a077848e97a101e998f067eaefd789dd592b3a66781781dba6f43a82e5eccbd6

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 34.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b3c7f997fcf6cd15f6ee7689bf2ba34125765285e8b6489d5ab1f161f7d605b1
MD5 40b19a13467ecab4cec33ab4b4a62fe2
BLAKE2b-256 ea8ce56729fe64678f5409755a9c4bda1663ada91e86b6a82cf061059a9cb695

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27cf98e44bd54399f0b14ae55a30bdc89bb20fcad79aa237df7bad7bc0cd7fb2
MD5 3f95c4a2d99cdf70104e4fc6d9476a46
BLAKE2b-256 528b3fe8a0f5eb741490663a84a79a116179ea7a9629ef3f2c51a07ca1ee0dc3

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a52fa939336804058faddba39e39d4bb176710e4fd6f741bbf0d9c102a6b900c
MD5 5991a18680ca63ed4f17d5f9708a0180
BLAKE2b-256 0daa3be09f173d54901d1129739158bb70497a4132ca70d92aa0d5fcadbc350c

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15bf4efea7863730f847124c7f4a9e4c714b3d601ab1f0cac0d1997d4c1cd391
MD5 1c39ef079f64816b732effc2203d352f
BLAKE2b-256 e67627492bd7c93cb7c8855015b8ac57fc2d3b87a49416eb3e9983b6757a47d6

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66d8d4d1d6894784e5a64e3ba24f2707235e8166a3b9fa7a7bf14016a852ce94
MD5 808674603e7a2158e08d0f55f965b32a
BLAKE2b-256 6b47fdae80d2f628a458f842dd3dfee607f07ebe105637110a214ceee098ae79

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d7c570eff8b602543504164f3e4d22045e687bcfb70c4732a03cfb12cdcd5231
MD5 dc25dcbfb57fe8c8be9e63ffd90e2a48
BLAKE2b-256 e68375dad9a7e8dcd8f111cf427f42dd7c12ace36bbef4365aae5cdabb683d74

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 717738bcfcccf42c23a8691ca261844581ee763fb28c7337e3452786f97ba454
MD5 f25eb14e752aaa5e8da9a0c2bb9064c5
BLAKE2b-256 2d0eac5be6b1e8c29648254c4e0c81741162cb0520bc019a3bb4e9cdf37e3f61

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db74d4461cf1443a60b51ccd6072387f1c7f549be4d2ce5709a770f005c0c8bc
MD5 842fbd6aa86937d71cf631b03b80102e
BLAKE2b-256 418384de3d2e71b96a963032073d3cf0452c82c9625b6629ad2db3a17fa3bae1

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f01375e0c7e3791b9eb1be3f6c1d1b24e33adf47f2802fe401e2a40e544385e
MD5 d821604670ac7b25f78adf66340b53b5
BLAKE2b-256 0af73677d887f29e66a25e5de773ab33fa4a7475f7a05544a7702b879dcda3c4

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 35.7 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 5f41f666ab9fd62e64340d4a6ba02e25879b1ec749740ae7a46bfc9df07fdca5
MD5 c4be246075ded9611db661dd0731156e
BLAKE2b-256 95625f5d5de2ca89902f92f6c2dc5531177607e414572f7ebbd7cabc15100198

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bbfc91727d9dd4cbc429955a41b0666875851ed3a60331c7748814b5098dae67
MD5 acf1b9972865ef6182d91daf19dcf155
BLAKE2b-256 4b0cd4c9847e62e815ed32604ba151c95a83a8b8b6b33183fad835614de342c2

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: bitstruct-8.22.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 34.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitstruct-8.22.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9de2d27be45a60fe50448177b1cec278a5b25c0546b30cfb1439384abb131adf
MD5 3c1eaed1e3cc113febcd3adcae0c2419
BLAKE2b-256 dd1245aebca1125db4fdf1b31ff6667163419443f06ffb8049d86f41befdaa0c

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ede7a7aa5b7b318b75e4995d93c30f83bbc903436c24eafdf318ae69545020a
MD5 f0d4d1571cb3484a436126b099580337
BLAKE2b-256 a879465306be0056df40ec74a7ebdb6743920c357282b35eebcabe4739163f2f

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 60d57326a531752009f56ed8028188ad0f9c51f74acb3594d9f5753a6b670725
MD5 6bb39f5c84a51f4e1018ae68cbac8d23
BLAKE2b-256 7a02063b05d6180ea4ece52df390da8779bad9956c3ae89ba655c24c20844b95

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da2480386d745f6d870522ea22ccc0e2c055f0d9e6ca8eb394d2fcf21b3c87cf
MD5 386f57d14b8cc39c6d0332543c3d14d4
BLAKE2b-256 05ad01297edc7905c4c5134c63b4bba33cc09e76eddcfe7e5f7179f9a45d4fbe

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25609212cad2654d98a6906dd404e5d2ab5347f114dfb431822b3f7325abd1b9
MD5 397839b403197c0ed6ba2079e9046664
BLAKE2b-256 d1e3224e897a57c649d419852bac179b7bb7e7e0ac4eeeb17282c40b378f6c72

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 dfb6bf8f5de73a8cfe0926ae40dc0335a5285332265872529f7ad3331d0d0c73
MD5 2284635e6977b3830cec4882b06b3802
BLAKE2b-256 14ff8678ffb95984c91525075498bcee0143d11c7973e29a40a585cd0203a718

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 20819d7ee78af08e3be13bfdece8f1f446887fd013254268db4bd18efe3d6074
MD5 bc7e349f43b546cbc075493bf44ab61c
BLAKE2b-256 2d97be680c4457f1241c1a8f57476e4f2723b16d135e3d2e00f24b840e99afc4

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fa998f8fd19ce4ceeeed08d1cc578d256bb819d02b97a1dcfca9c190e0829a3
MD5 8e6c9d6af8484e0e7606f9bec0b5eb44
BLAKE2b-256 d0d88f43882d2326f53a4798c7e96f58bb3d640c3b39bf297b3388b468beffc2

See more details on using hashes here.

File details

Details for the file bitstruct-8.22.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bitstruct-8.22.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc64a0f578c383950e5fa232568b2e88bc1d013529d6bad7c311ad84f4b6afec
MD5 d825a471a641cb977655be23065955c6
BLAKE2b-256 2713cf070c91625285de8353d4341bde94e2ccacfce4ccbf0473be62c2714ad8

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 Sentry Error logging StatusPage Status page