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.23.0.tar.gz (35.8 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.23.0-cp315-cp315t-win_arm64.whl (36.7 kB view details)

Uploaded CPython 3.15tWindows ARM64

bitstruct-8.23.0-cp315-cp315t-win_amd64.whl (36.9 kB view details)

Uploaded CPython 3.15tWindows x86-64

bitstruct-8.23.0-cp315-cp315t-win32.whl (35.1 kB view details)

Uploaded CPython 3.15tWindows x86

bitstruct-8.23.0-cp315-cp315t-musllinux_1_2_x86_64.whl (86.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

bitstruct-8.23.0-cp315-cp315t-musllinux_1_2_armv7l.whl (84.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

bitstruct-8.23.0-cp315-cp315t-musllinux_1_2_aarch64.whl (88.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

bitstruct-8.23.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (87.4 kB view details)

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

bitstruct-8.23.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (89.9 kB view details)

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

bitstruct-8.23.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (89.6 kB view details)

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

bitstruct-8.23.0-cp315-cp315t-macosx_11_0_arm64.whl (39.1 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

bitstruct-8.23.0-cp315-cp315t-macosx_10_15_x86_64.whl (38.8 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

bitstruct-8.23.0-cp315-cp315-win_arm64.whl (36.3 kB view details)

Uploaded CPython 3.15Windows ARM64

bitstruct-8.23.0-cp315-cp315-win_amd64.whl (36.7 kB view details)

Uploaded CPython 3.15Windows x86-64

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

Uploaded CPython 3.15Windows x86

bitstruct-8.23.0-cp315-cp315-musllinux_1_2_x86_64.whl (81.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

bitstruct-8.23.0-cp315-cp315-musllinux_1_2_armv7l.whl (79.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

bitstruct-8.23.0-cp315-cp315-musllinux_1_2_aarch64.whl (82.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

bitstruct-8.23.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (82.3 kB view details)

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

bitstruct-8.23.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (87.2 kB view details)

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

bitstruct-8.23.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (83.2 kB view details)

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

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

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.15macOS 10.15+ x86-64

bitstruct-8.23.0-cp314-cp314t-win_arm64.whl (36.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

bitstruct-8.23.0-cp314-cp314t-win_amd64.whl (36.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

bitstruct-8.23.0-cp314-cp314t-win32.whl (35.1 kB view details)

Uploaded CPython 3.14tWindows x86

bitstruct-8.23.0-cp314-cp314t-musllinux_1_2_x86_64.whl (85.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

bitstruct-8.23.0-cp314-cp314t-musllinux_1_2_armv7l.whl (82.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

bitstruct-8.23.0-cp314-cp314t-musllinux_1_2_aarch64.whl (87.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

bitstruct-8.23.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (86.2 kB view details)

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

bitstruct-8.23.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (88.6 kB view details)

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

bitstruct-8.23.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (88.2 kB view details)

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

bitstruct-8.23.0-cp314-cp314t-macosx_11_0_arm64.whl (39.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

bitstruct-8.23.0-cp314-cp314t-macosx_10_15_x86_64.whl (38.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

bitstruct-8.23.0-cp314-cp314-win_arm64.whl (36.3 kB view details)

Uploaded CPython 3.14Windows ARM64

bitstruct-8.23.0-cp314-cp314-win_amd64.whl (36.7 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

bitstruct-8.23.0-cp314-cp314-musllinux_1_2_x86_64.whl (81.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

bitstruct-8.23.0-cp314-cp314-musllinux_1_2_armv7l.whl (78.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

bitstruct-8.23.0-cp314-cp314-musllinux_1_2_aarch64.whl (81.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

bitstruct-8.23.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (82.0 kB view details)

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

bitstruct-8.23.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (86.3 kB view details)

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

bitstruct-8.23.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (82.8 kB view details)

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

bitstruct-8.23.0-cp314-cp314-macosx_11_0_arm64.whl (38.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

bitstruct-8.23.0-cp314-cp314-macosx_10_15_x86_64.whl (38.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

bitstruct-8.23.0-cp313-cp313-win_arm64.whl (35.8 kB view details)

Uploaded CPython 3.13Windows ARM64

bitstruct-8.23.0-cp313-cp313-win_amd64.whl (36.3 kB view details)

Uploaded CPython 3.13Windows x86-64

bitstruct-8.23.0-cp313-cp313-win32.whl (34.4 kB view details)

Uploaded CPython 3.13Windows x86

bitstruct-8.23.0-cp313-cp313-musllinux_1_2_x86_64.whl (81.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

bitstruct-8.23.0-cp313-cp313-musllinux_1_2_armv7l.whl (78.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

bitstruct-8.23.0-cp313-cp313-musllinux_1_2_aarch64.whl (81.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bitstruct-8.23.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (82.1 kB view details)

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

bitstruct-8.23.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (86.4 kB view details)

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

bitstruct-8.23.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (82.8 kB view details)

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

bitstruct-8.23.0-cp313-cp313-macosx_11_0_arm64.whl (38.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bitstruct-8.23.0-cp313-cp313-macosx_10_13_x86_64.whl (38.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

bitstruct-8.23.0-cp312-cp312-win_arm64.whl (35.8 kB view details)

Uploaded CPython 3.12Windows ARM64

bitstruct-8.23.0-cp312-cp312-win_amd64.whl (36.3 kB view details)

Uploaded CPython 3.12Windows x86-64

bitstruct-8.23.0-cp312-cp312-win32.whl (34.4 kB view details)

Uploaded CPython 3.12Windows x86

bitstruct-8.23.0-cp312-cp312-musllinux_1_2_x86_64.whl (81.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bitstruct-8.23.0-cp312-cp312-musllinux_1_2_armv7l.whl (78.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

bitstruct-8.23.0-cp312-cp312-musllinux_1_2_aarch64.whl (81.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bitstruct-8.23.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (82.1 kB view details)

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

bitstruct-8.23.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (87.8 kB view details)

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

bitstruct-8.23.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (82.8 kB view details)

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

bitstruct-8.23.0-cp312-cp312-macosx_11_0_arm64.whl (38.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

bitstruct-8.23.0-cp311-cp311-win_arm64.whl (35.8 kB view details)

Uploaded CPython 3.11Windows ARM64

bitstruct-8.23.0-cp311-cp311-win_amd64.whl (36.2 kB view details)

Uploaded CPython 3.11Windows x86-64

bitstruct-8.23.0-cp311-cp311-win32.whl (34.4 kB view details)

Uploaded CPython 3.11Windows x86

bitstruct-8.23.0-cp311-cp311-musllinux_1_2_x86_64.whl (80.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bitstruct-8.23.0-cp311-cp311-musllinux_1_2_armv7l.whl (77.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

bitstruct-8.23.0-cp311-cp311-musllinux_1_2_aarch64.whl (81.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bitstruct-8.23.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (81.4 kB view details)

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

bitstruct-8.23.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (87.0 kB view details)

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

bitstruct-8.23.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (82.4 kB view details)

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

bitstruct-8.23.0-cp311-cp311-macosx_11_0_arm64.whl (38.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bitstruct-8.23.0-cp311-cp311-macosx_10_9_x86_64.whl (38.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

bitstruct-8.23.0-cp310-cp310-win_arm64.whl (35.8 kB view details)

Uploaded CPython 3.10Windows ARM64

bitstruct-8.23.0-cp310-cp310-win_amd64.whl (36.2 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

bitstruct-8.23.0-cp310-cp310-musllinux_1_2_x86_64.whl (79.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bitstruct-8.23.0-cp310-cp310-musllinux_1_2_armv7l.whl (76.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

bitstruct-8.23.0-cp310-cp310-musllinux_1_2_aarch64.whl (79.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bitstruct-8.23.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (79.8 kB view details)

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

bitstruct-8.23.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (84.6 kB view details)

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

bitstruct-8.23.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (80.8 kB view details)

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

bitstruct-8.23.0-cp310-cp310-macosx_11_0_arm64.whl (38.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bitstruct-8.23.0-cp310-cp310-macosx_10_9_x86_64.whl (38.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

bitstruct-8.23.0-cp39-cp39-win_arm64.whl (35.8 kB view details)

Uploaded CPython 3.9Windows ARM64

bitstruct-8.23.0-cp39-cp39-win_amd64.whl (36.2 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

bitstruct-8.23.0-cp39-cp39-musllinux_1_2_x86_64.whl (78.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

bitstruct-8.23.0-cp39-cp39-musllinux_1_2_armv7l.whl (75.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

bitstruct-8.23.0-cp39-cp39-musllinux_1_2_aarch64.whl (79.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

bitstruct-8.23.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (79.5 kB view details)

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

bitstruct-8.23.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (84.1 kB view details)

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

bitstruct-8.23.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (80.4 kB view details)

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

bitstruct-8.23.0-cp39-cp39-macosx_11_0_arm64.whl (38.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

bitstruct-8.23.0-cp39-cp39-macosx_10_9_x86_64.whl (38.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for bitstruct-8.23.0.tar.gz
Algorithm Hash digest
SHA256 3d20a8d748add9b1c68efc6c592a99b4b0937c9dcddd140fdae352bf2513aea5
MD5 ef63fa0d2b2f3103c8550e773264d011
BLAKE2b-256 6cb583142324f662f23d22c6bb018e2f3caefca9b24b877e4a76ecf516bc81ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 36c4cde21ebfbc2de325676baa834d21121cd55222eab31cc155089c7ca199fa
MD5 ea83a6aaaa8acf81553057ac2fb74efd
BLAKE2b-256 d5d9f4b2600bf3267c500a6f949edda8ce78f9f12f135810ed9178166c2f9e73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 36.9 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.23.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 dc38d550caa3a7c5f46eacafafe45876a0e8210c696eab2784e5892ec7c38385
MD5 3636a00c297523bc4ae875d9f518ec0d
BLAKE2b-256 f8f5974584e543c12d09ab4136eff7a39892e26be2a901a41b0e28c29740e8d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 35.1 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.23.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 bedc12cb914c3506e63d794fc34a99ad8045a1b4fa1bfb2a12799b028c08ff7c
MD5 800fdf4b8d0c47ad8ff02da39d576f4d
BLAKE2b-256 28698528e0f6861daf0f01dfe117aae5e798a0a80dd0bb14e705aac5e17a0b96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 453fe66a773968628625dfab7f44261ecc876fd75a51c55e5d65a10574ad1247
MD5 8279a40ad73523a07c1def644180ec5f
BLAKE2b-256 2b79acd656f786f589b4abbde19f0084fbdb6eb544315ff4c12fbdda30d6f156

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b7baa4e5c649c3b9f0a5dd241e65fcda1af2591863c47d00e5768f27d9418162
MD5 9c65793e9aa1c630757211f99db80c48
BLAKE2b-256 715fe98a3393d8da67f15d5b023f9307b64807ed9e13241a19e67cef1a4b9961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e22243054c2a4ff7bdba8669e14f55f543cb75879cbff889a79a84263a417d8f
MD5 e8c44ec68b5017e9213994ca830ef6e0
BLAKE2b-256 1ff9f8b2f3d4f64e0ea2cf2dd9c9e5912cf166e08ccc7785d570999e10f71f36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9ccf874ba176315c5af0bb378b3572c18ad5fc3e3a509e5dfc38b6b7339b82b
MD5 ce7d88b4f3887c5ac4f03ca093cca009
BLAKE2b-256 0ecc12f1dd886f4abeac3878c572b2edb351b7c1924f3121118d2726e4c483b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 60a6a6f29459ac4b12c9ba9f708e5755cc7fbd70b51b2446237350e53a0c34de
MD5 b936008d0827d4be24912babded520c5
BLAKE2b-256 1ae156dc75779e47baa31912e36b0310f06f6754eddac86b42b60108e5c71479

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2be63ef6373deeb91fc1c9b1264030bd74a8e85cb41987ad989958e40ac2dffa
MD5 ef6811f5cc4eaeb72b3640a9725a93c0
BLAKE2b-256 114c3ab9fd225253ed63a0d0c5e60ca382e0bf2085fa45ab432d65eb06dd9fb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3ac40c0d0fc0cdfeaf12826ac86399a6e7b4c1b20727387b973c36ae2971647
MD5 7dfa6aa9c1e48c8c5db8577577492c0f
BLAKE2b-256 b2949f873de5a280541c9d80eeabb3ea2fe8fc6b176f5d9d2f10ee5ced15870b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b4a9008ebc580bb4e438af76f6a1caf3079250436974eacb9f6236e3a0090ffd
MD5 75159c28b284ea984045e08fe41c78f6
BLAKE2b-256 ad42f0629c7c278b08dc6c82c63a34d5ca097be3d23317b5965b0bf3c26367e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 36.3 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.23.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 abd9d50d64eeb49a4505fa0ef9f2292e944133af0daef3182c54851f5d02b339
MD5 688b0a7099fc9b1e1eed8c7ae900dfab
BLAKE2b-256 c96442cb140fa7f525a666b9339f9463eaf35532c1d3720de930e77f061e73f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 36.7 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.23.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 01ff6e03228464698dcc93159b8ab914861e19e44f04e856670746e773d1c57a
MD5 cc1ff32dfebb066f3214610832090680
BLAKE2b-256 f57c8b87b640b9d36d6c79e13d8e3edfa436fe34112392eb05b5e4e8d8f5c83c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-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.23.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 8090eed9afe13d452589abb4c10b0e6f8087534af85f380b6d90c563c7a481f6
MD5 349a887f5eee0849319c96987bcd6ebc
BLAKE2b-256 23e5600293ba233310fb602f99180193664652471627e62befb756f7157d5a55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a0f3cf2dc56bb40638d2a11bca87721d976615294b982b5d0d7c6b33092fa74
MD5 abda75658162d62e600670e1c67cea14
BLAKE2b-256 5945106aff9c1f3ad50636b4326d94dfd56bca4586637f2619b09f1175b21c76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 570dcfd0c46cb1f7c06ba8b87647c1291ce51dc39c978d2bada6052dac1c7726
MD5 b9c1fcf419b257ea121f17044abc50f5
BLAKE2b-256 fb5d02349abfb24751a07de2a4d7ae5e42d90e491683d203991b81fae920b30d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13829bc0e6982d1e434c79905e0a51d77bc6a5eb7fd5332ca277f578228e9047
MD5 5f2e835307d414933fca9bff63ecbee1
BLAKE2b-256 03a1d37995770b68f5e3251bf7e45a621b2a0860929710960140e16c96e165a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db14c10fe1fd2c9062687b850ad18d4675998f569991dfb6241133c0d09773e0
MD5 6d0db350429894a475413ec09487e936
BLAKE2b-256 3bbfc6bd62978118ad36f203b8c444112f8d81c5ce8863fc6e4210058f7a0dcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8f22d68e67c620e9240841ee482762ce17ce15aeb295b9b83628401f9bfea8cd
MD5 a5771929c1f5c4fdab32e303cc96daea
BLAKE2b-256 f191141d25b1bfe4a2bc173a52b33a57c16fcc6085f737acab8a528c02edff8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c9e6ae184998c13c614870ea10da48331ead395d2600fa9406979c341e3494c
MD5 fe19fae76995a007557cdbc32c952a2b
BLAKE2b-256 cf13c274b86705f8d7c5c88c1e17b51f56bfdfae7edbe9f7d6e5da170052d08c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3668e91f8648a6812e435b8ff0b728767e38136b504392609c39a8bf3338134a
MD5 19c26c575039fe456dd3de77c7e0a8fd
BLAKE2b-256 6014f449b887d38f22242a04efe4f8e63ceb80a2944438847cbc2d54bea571ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3092038d6c6d585b3bfed2d7b289c1321a977985006f019cbd0575d9472ac773
MD5 c34f29fadf6a853f8953afcf64931e67
BLAKE2b-256 731ccc3a38ecb44a69d45b4298313a9c52f6478f473f53d52cfa353f0dc7e59e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c386f12a3d116a95f8170bac28dd1da0cc380303fda3c3a6470cd02c1975bcf9
MD5 60e69c3b433bb807749f4d1808255937
BLAKE2b-256 2b2787e49408b61dc573e710b85200d378e2787a8f87c52f9f2d4f93b8482d09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 36.9 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.23.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d2ddacd271c2dad74b856bb129890ceb23f93e88366ab2551e89e5bac0655648
MD5 b388e7d691c6cf26b38e103abdc13030
BLAKE2b-256 b06fe31d4772309072c64e4fedb93309b6d4bbfb4ab9780cf63a3568de19e3f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 35.1 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.23.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 80523f1edfb620e636bb6109c1fb3775a7b15abbb14f9427f443b6f9c4c17513
MD5 de3c4cebf0045753c3403e2b8c60281f
BLAKE2b-256 d3120f1aa6765caf892fcb535b57a68ad9d3808a8323ef6950ff3df3741ffb04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbd31e894a12ca64bc3e7e144f5c1e72643fce1f6e9e735e287cfd67e821e6c1
MD5 fac46338c1c6a3b39df8e6556432340b
BLAKE2b-256 bc38d31262bed5b30ebc04a1cf5137f947774854c7e3624d5f7cb9327992c3d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e48352c7fc8e412638821eab60fcc966628a811db0a1abc6bd1387af2a640463
MD5 4412ed18dabfa3028f4c0012f5a59de7
BLAKE2b-256 80f37cdc7fe920e5f3249a1bb771f4d1847ffe29bacc97f263c5d62123f13e90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 046f90125315fcec6898bcfcc74bfe467fd41d6c23274b106e082fbfe4fa6e29
MD5 cecffbcd6291ba242427d2e8e9735343
BLAKE2b-256 ae0cf6cf2268f1896dc7fad12897374a96ecc17b16c2d3abda5b3980ea987d26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 983e545972dbb26feb186b64e09a2256f40b2a5709a7b33c3b926eb51a55c332
MD5 5da64511625a78d0931dec588b7011b4
BLAKE2b-256 5ffe0a6d93a6c6b63960e23353e886485ceefe92665aa0cd04c366c3bae2a04d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 040a0e8e73c9cd0f0d20e7bfa4951edb9c365968d311eadb1728a3328c53e400
MD5 876c85b43df2cac41695bdff3f699ba3
BLAKE2b-256 f48cd3bc2426ce3d119748b47f65637f17546edf73e65ca59180d10b2ac7796b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6dc93e847604c9bf9e2fd260dc185aa672c285e3c55e10b60186bbb6b053df1e
MD5 b067f377e03f20deb74acccfa3d179a0
BLAKE2b-256 95cf3a0d377dceac8b43a2f91aa30e73a9cb9431701df69f161ecf12de27713f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bdc547a3bb072f2211ce3107defbad5fc3183b31099daa4de203e69a8e29b8f
MD5 0cadc37e2dfafc203407dbb6fcdc6b27
BLAKE2b-256 b5bbc75d79469205d1108b59437459680928aad99adaf5748473d57333519782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f6efe5ea8745702ab087b5d777c0ad8ea6e3f9cf1e5faaad59e60dd69682f413
MD5 8fd61d132b54ef67bfe1e00fb8f05158
BLAKE2b-256 0462126d10e4624defc759284fbcb1224a56a910a51914173c6dce243cda3f1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 36.3 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.23.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 dbf941d3af7b738b5be48c154569c4e5bc34adb6894cf3b77979609c6780fefd
MD5 2313e60ba162d254c61366192f7cbd72
BLAKE2b-256 886dbab36e19953fc9ff9bdf302c549a6648d6eea6b4ec469069c11d1f293795

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 36.7 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.23.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a8954c545e9831009ed25ede935ecc0fd17b6f542d61d99493b03ce23cf7e9ba
MD5 c1d06620b8b2c5adfaf1dce5eda2dfac
BLAKE2b-256 f81e6e040fe5a1aac7cf1284757020f804cc667b8f600942061a409ae1e2de7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-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.23.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 409afcec0cc9498367ca182448c9803244f99632b7d000bd97eb8d4793e5edf1
MD5 11adf1ee48ad45bf4af4cfb2480fedb6
BLAKE2b-256 0555a6c32bdd8a3ea47ade80dc58884a68dbeed75610248ed6248150877be354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61cdf35d88ac6872b66d1a7fa4a66e5284e74e97155abaccf0e040b0e254f5fc
MD5 fc990691dc05e69df430c6bbcfa90ee0
BLAKE2b-256 c63ce7dd93fc07c18ae05298682134e70a628bc35d86eab84777deab2612a378

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 343db76851023e0494eddd4dd2e96d454ea99fac09e034d882e9f2fccca61a08
MD5 1914f4fa68880cf73a9617bf2bf72c92
BLAKE2b-256 72df362b66490e299411f8dbcdf261b1c48b91535effff04c49b2cc1bc721d53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed2a18afd4d88703a61c6286a95549eb9d4768668a16cbcdaba7a6fc3b6c13aa
MD5 2da31764f30a44a35e962ad9afec0ffb
BLAKE2b-256 f284202444e2e33a15e0e825e63e0be20a8c6f0f98fa9e1eb33f86abfcb815f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f99a24137769db50b5a278da4a32ee71add7fee936ced1fc06ea375908e2d582
MD5 9bd42fc99756a6c15a4c8d70af3bbbe1
BLAKE2b-256 560b42c7704aa74a8f7b8a0a518d553f5c28deb74a41ab19f48d4bad68fc8426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f5a8b5ce0abd11d8359c6b8a21bea47001029aa4381bc285af535a62b711e5fe
MD5 fdfc489f03e6356a351cb1aa1f3a0d88
BLAKE2b-256 a38700c062d9b569ba11973b7527ecf06622292c3056f2629578b2c9531e9806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea9de2cbaba0cd42e5c9cf0d3644ac41cc5351c9a4db3fcb811f9bcc35836860
MD5 4ea9287ae8e32af4228ac549c2a11bd9
BLAKE2b-256 7040b037d5949406f4a87f098fc118c97bc75ad7ad0bdae50bd6604f47e6717b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d15aadaaf35d21e09590a85db462df869e5678c94fbb23b245e068b63de07414
MD5 5c2e26d858a15aa826a4dbbce1394c56
BLAKE2b-256 f4cd680d6e2c7ef696dd3a35d6aae9195434e49e00adc53649f6c25532676a79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ee30576c04dadfe445d4e3cabf71ed026d1450f2635fb641f70d9cb4ef4812f1
MD5 03626b771eea7c49c3d3b59d8a9e150d
BLAKE2b-256 30cd4e72a1334f249e7871fc49b73d259899e5c0765f77e578835aa8a0248065

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 35.8 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.23.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 02886d6e6cf149b6103c924f40c67cc38f5cdb532d29536150823f9317756107
MD5 675b688b279c9f706a6fa18fc8699316
BLAKE2b-256 6f5d3da05f36853396335ccdc82216162f41ac6b83468d714006bcbe282477de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 36.3 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.23.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0ce0e26170e66bf71958cf7f7217c577b1f78c8c899258d1ce6ef35b411a26a0
MD5 2a1cad2535e1fac01dbfd16db09b01d2
BLAKE2b-256 b2314a2bf783fae1e16606909e5322e88c83bb46adb940f808ad4283ab20a268

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 34.4 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.23.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f45f1f05802086ea6f0640b6e4337fd7703615ad554005714cc0a5c49fcabaa6
MD5 a1133af2070920de0d3ab8fe4dc2f742
BLAKE2b-256 69a32d7ab97042681b7354bab3ff4d7b54d27a6d1f98cfd974dbb920b2cfe9da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba0c8625642c2a1b25a5a715fc23b608f0d11654b664c2cb0bc76631477738e4
MD5 4e1afbe29e3a768ae689895e049fc4de
BLAKE2b-256 3c269eae32f92a2e65c9f222a2973783f6abc3a7773d0f824b9f173a7365b5e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ac8693cd6c7324fc04194e8f698b980fd83c7cafdd0ba8b01340940e5dd0f020
MD5 8937a02850f966481428153f986ec2fd
BLAKE2b-256 afea503aada1deef5040a25c2aa859c41ae2801a0356cd4aa2cdef853344706d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a25d2a4b181b53dba0c271e77749704334559d3a24c83570713b4f226572c0f1
MD5 c30e3a0dbd9d588e723db01e4fcfa0e0
BLAKE2b-256 4421c0a6ecfde82b69c124e47b99d590f8516f715287782a88a01fbf6fe49ede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 110d48ef3bd803ac4807b6c892b23392f16969e6a1259266263922ac5dc603e9
MD5 9ed5f328a155a2c112c3e45b2fc445dd
BLAKE2b-256 0eb1ce5c6edb115977668c439beda4c437849807527470c12199c0687fb80a3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e3f706e2320b73d1fcf476dcd46dcecafdb9fb0cd818e155187a87c0cf07772b
MD5 78e89b70095d16bd0c321dde37a9e8f0
BLAKE2b-256 f7522a8fbc88817c81f780387591e09de10d458ef37925152fb110e48163cab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ecbb28b94f1d20e5a8f42800cff33b7a411c5dbeaf3c586fe1abf0461eb26abf
MD5 5c614adb08f39e4514a85da968e08eff
BLAKE2b-256 796c9ae899486230443f5afd723bff0ed67fbb889144e6c948397d33117ba407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee97a93330c68568625494b64979a0bb930e5aabc32e9d902dd624a903a44f5b
MD5 aa6e93a1b947ab4793cb92154120d175
BLAKE2b-256 ca2587d21dffffc5bf241c3658418959e5e1727377a0777a0a8df7f4b720f8c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 af2ea733c620bcf9370ccd2ac20ffff45acd838cfb5b81116fb4dbfaa4738bb1
MD5 5383b10ad368fd4eac1b6d905c5a7f2e
BLAKE2b-256 2816e616c177a703ed31835943c75ea93132840069f4f618365882b826091d5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 35.8 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.23.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b81e40ee6d12f4b7a2dc1e5484c38fbf30f3081813688877befe14443f18dbe6
MD5 770fa6d64f60c7ad46c9e8007bd2591b
BLAKE2b-256 d05cc27f6162e65c183ebc5125b2aa9346d328b483a956bdec122fba8e0c4424

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 36.3 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.23.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6127331b2b006d29fab83e0490d6ba82110df697df835f8219a14c45e0f23bc7
MD5 58ac8a9a4e9ebc8bef91922563f5a488
BLAKE2b-256 e83bc20cb3df5abe87d87b25046ad9b751c10b8909c382f414fcbe87a1c45a70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 34.4 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.23.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 61f03ea33b22dae83f30248a4b26efa27371be45941ba73aff7a64a3b9a0be95
MD5 e18e9521e8e0f6d559f91f348e072921
BLAKE2b-256 a2d0ec8a378c0933a0056aa727bf7b01d18da592d24f1183a27661e2d5f0203c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32845c4c613af2835b95b8980cf5fde34be0dc0cf98d26bb3e87665c10c5fc05
MD5 99bb4e3e20389f45da0246c38f524d03
BLAKE2b-256 99f325eafa4a8c509db9f90b840ea256e6b7f6d38f9e9c806163a31d7fa3172d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 92663b4f56e0479f7f5d9363a0062c0a46bb1afe819f74ab74cddc74863d9a40
MD5 95a3b0c5ef2235ff2f0d2ad9dddeb77b
BLAKE2b-256 f73cc2bd6d741cf1046ed12ab8d1a80273c56bbb23ad1325255e4abc6de39f64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38250c1d176a48583afe2996743bf6ae57622c2b14620b3f717bdf761db006af
MD5 8e7b55e4443c8f6576331b654f083b8a
BLAKE2b-256 6ed0db2bc79cc7f5fa2bdfd01e92144033d975fb506b22c595aaf846322beeac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea950e3aa1d3fbb96a35f9ab3bae90fa44ea0c5655068af11e7402ecf6860547
MD5 b6e51d02c32b3f7805b2409eb3741627
BLAKE2b-256 dcb24cc25d93d368e6c917f63d7426453e0886bc71a57760126f5382fa6bf3e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1bfd071abf80ee9721ad7aa01c516388a72e808fa150bf1b8c82d1aec014261d
MD5 3bd27c1c44ba614a0a95f5eee1d91dfe
BLAKE2b-256 a81c2ab8e3224e066f1543fc197a1fa1ad4e5e8ded2bb7eb04ed4d97060e5b2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 122cfe63b4e2a3a48d11338d8028e083ad0c3ab9c7831b8c8ac1ce5ba81c5197
MD5 bf6211384fd62e7bdb68d25c0bd369b5
BLAKE2b-256 4d18e7818162aa3f402759bf9c02c75bd7bfa087398d9fc9f29dc5345a929c83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7eae7e4eedde321ba6063869770c40ec0a9dbb4ac3f07847c218c5079da7b84e
MD5 6203f71a10906b347e87ced0af5f45e8
BLAKE2b-256 f5f1d73a83786ca4d6418e71227f47b47f76845dfb25904f29671239d495dcd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 52183a69bfcb046470b042109f2f9ca695fe0c5e9b12ead59359f90d5c06632c
MD5 b8a42c353c542f6594618980240e549c
BLAKE2b-256 6145cc9dacd60cb5a90703bab97b77261d86179b1f334ecc552e4ce9fca956f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 35.8 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.23.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 df2d29d730b8591a01cd940f92fce810e0b13f653b6047a7f02aa11534fcef92
MD5 9a1ed918c24f4cb0bc85c14af64c7d05
BLAKE2b-256 6d2ecbb38612412460a1d0affd4f85a3508c129862b72480ae3c4415d2286bac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 36.2 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.23.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e4766c3e768a2a65e47537de549ba0fa92b9dad290d9c4c1c112bc09444a9da6
MD5 b6ee74182193195347ecbfba39cafc5b
BLAKE2b-256 cb5e9b3d25a45c55333f853279c2d110a48764601e34e50ba537c99851ecea07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 34.4 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.23.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 60228ae0861d193231b6449daa711be4fe12bb381ef2972c998d033c276e0a60
MD5 85c12d8cf277d4888acda2e25db4492d
BLAKE2b-256 c439e47170433a985b798787fabb2e18bfe1067789e6c1dcaca62c1eb27ecc31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a211aa2eef09d39e1bb75cd27d180e1f989f2763bc1ae7223be2b4d8f87ae176
MD5 4235e06407002c19ce00cf620d55706b
BLAKE2b-256 357e4b1a0cb2fd4c3d2aeb04b371211f90cbd2f2b38d78f4c90c6767b3ef01d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7d7dc3f377ca0e5d3867477e247526cfdf6d41f8394e828b0b2ad36132aacc6
MD5 a1b72253b096e4dfc215866190e632a6
BLAKE2b-256 582f064d0bb7cce374c241ae20b6aa6cd4efa1a686e21a49213cd48dfad7ed6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87aaec64dc3c631e5e1262247cec3f768b8c58da80faefe8e3d2f281601dfb4e
MD5 ad6f9b5edf21efe27330bf42bc1741a9
BLAKE2b-256 5d5d7e195705751d5fea290c3b52ac6274d1b0e615f4622f260fc96373f65d93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d35a7fe20cbdb9c315ae8c2bf0e1815e9ee66a4d6304beb03f01a04806c7c6bb
MD5 66ece4f3ef9236cee4578773a75ca601
BLAKE2b-256 448d7a8afe0e9cc901c435a310e64808ef279f54c7f9ab7d9955fc164672914f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 31abce6692a216816a8eccac902a6b84373fdd22c41b5e96d701e94f8c00d916
MD5 874b96217d19a1adb637cc23e313d0ce
BLAKE2b-256 b7b0899e32f186e145e1713c85a2a0045d49896e75e4da7d4b70c499842f77fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cdb634fe38d322ec4832de5163ac4cd7525f5478ece19657ba0ce5839230bedd
MD5 9547e05e9763153a1482bdc03531858b
BLAKE2b-256 49ad0bb7415584033109dc5564a11f0a1c1618c11bbf14c9f61f4ee670696673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c86198f6ca58db5d4c499860bc52b4d3277adb031c0e5ef7831fa86afe0253f6
MD5 b82c782314377e0d9f82275026c87385
BLAKE2b-256 005e56e631bd0adb59ac56f8cc13bea94127eba5e657922b32c1d4a221b01e0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8f420025220d13c14298b184ffb830216edb707eff51429aba245153c17af82a
MD5 48b06fff544533242c5aa9f11f4715fe
BLAKE2b-256 f7334236afa945bb0b5ced298c3a60154fdb52cfef6cd5228a2edf219726ddf6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 35.8 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.23.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 bc83c468d84290d35fa255b54ae35f2d63dc6fb7991c6632436580ce2aeb139c
MD5 268ef2dc0d3be2f00b521ae3c9828d1e
BLAKE2b-256 c6212a28fde4db1c74844800492baef9b02b0dbd4a5c588a5b97ae8e0f5cdbef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 36.2 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.23.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1942670eb9f9a0ce937319cce5303fda805f4f589fdad353203ed7f7d62f8deb
MD5 01602b6e642cfd2a78745ec0c7514a92
BLAKE2b-256 3584a31fa6123c63ada3fa34d843dba0175229204036b25bd39fb1bb4631c704

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-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.23.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e8c2e49abf0fcc25d7b2bdef029d756a18bdab5a7c56d0b0e3d873b9e4ed06e7
MD5 fa810eb56a88861782d9bebc246f3113
BLAKE2b-256 d415bba7f4671e2e59ee48364f3dcbeb6736e313a13b43f9298431b2325d60d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c762c2d1c980e15eed083acba5da338567223a01dca5620b0823cc202bffe716
MD5 9fcfc5a54dfd11553e2d62c63b0dd9b3
BLAKE2b-256 f4cc72e90484b87e169cb9c7bf3ae675a4eb65b2f88e3fca49d4df6c3fa88bce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7427b1054c63a57655202776b65981de289ae10147784a2a92328dab30261cb1
MD5 c4ac63bfac73cf47bd30bcf223c81078
BLAKE2b-256 8b659df871c32dd00817ad13470a17490941696d288942d24f35521ab8f4a1ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87008901a8211cc232869cfc1ce57da60c91c8c13d95dc6c62a789323b6b8d5f
MD5 8ba81efaf740c0bbc597b7b5fa0cd045
BLAKE2b-256 8797e7948ea782a1a0c8b6faae5ab2645f94d404799f1055c29976b2e2ebb119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e13b48995d636fc219c0c2bfd9a3ec5f20ee426d891fcede9fd7b85bb89baa4
MD5 dd3b9ead40838be606dba287bcbe082f
BLAKE2b-256 cf36716d7210286c2c879c8875861e16417144890659da737ca69c29ccb2b687

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d61be4424198582424f5a3e1553c9d90fda2de7b6c319083d9b4062920fa5150
MD5 9055f702b13cbf3ad415997560c89550
BLAKE2b-256 b8a9c4bf17631e6538b165a74d355ebbd215cf7268090c74f4a411ae8f862220

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c837675b1ba247cc1e42ef106634aebc25e13a36b1207add579e1baf09b0eb9c
MD5 680282b82a3bf51d04bf5d6ed92c63ad
BLAKE2b-256 2c046a446ec97862c539a563cc31d3ec9a914e49df53c87eafbd7eef0f07b356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35db7c24a588a849a7356e14d9f4e76bf7c6656b6949de00e034765285715269
MD5 a9a44097c112d4a2d4b84e006253167a
BLAKE2b-256 3800f249c9fb109692eb85a553661aa9360770aca499848ba6e27a1caf2f5ac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f95c0879eab7012650c9e0e1f2597d942f2d95dedc543eadc3476f8c00df5816
MD5 ae9ed76a796603f436b8c2bb08438a71
BLAKE2b-256 164c9ce28ab5b7b8a517a5d57c45ad18322a5f7e763ab02b8b4341dabc0a6f4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 35.8 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.23.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 2efc98b0dffbfff72fc945ef0db7876069d71ad3c0dd23c2c2f03e02e4712918
MD5 b4237d38c7b31b695490909c819ba771
BLAKE2b-256 63d061884edab6e455905eb56178da6598c2aa38e4817480363db9e3c1cf0e65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 36.2 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.23.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ba0fb3342d23ee3999131ff58cb104b9aaeb4a2e3a4c00618bde8b738b1c0a80
MD5 316a9d8cb1ec42922fa680dccad6fba8
BLAKE2b-256 33794354ca8db4b6bed46c9db919addf93589aa2d12cf627727c0e303227de06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitstruct-8.23.0-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.23.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cd39ebf8ce136bf3fac0e3a19a8d1182d13db515b0fa3d4e7de5ee28dafc9571
MD5 3032b5e4b5ac684b214a352d3d2b4a66
BLAKE2b-256 a0868ce4ed04afc1cefb1f87384753b5529df9751785a3c960c5931785e6d938

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e2a37e15dae12c9631132bb4ee2c2d7717ec95075116b3266420118c58bb119
MD5 8c0a9f6bcc04dad90e27b87e4c262b11
BLAKE2b-256 e877b94be5eaefedcbdbd2d189f4b7d673f3f1daeb185305e5e18ba84c2ed470

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ecc907300e5fe6bc450fcd80157f0bd2efa94f1e1a00168fbdccf30e50f40a8
MD5 4f2f5463ff5d4cf3cae743e605abc452
BLAKE2b-256 1b2f0faee851d76572cc3e3365eb5a46e811df7a357ebf8dc40678f3906cea16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35086e1598cc22e05f124007541af6ddf8d267484d725fc0f27deddf7753f54f
MD5 8219ee2d2f10b6108db81d79894fec55
BLAKE2b-256 4ce84a38a19d3ae4a5d7f2571625e478178f73431c2e220e9d3a5530f6bf2eb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa3ff496f94edb6d884ac771b85410f38ec393a4d521fb2e72791ba98adeac04
MD5 9aecd278a95b1a6cac662e888ebf9125
BLAKE2b-256 41f263cd10b4d1e2a741d8dbf808094618db8302e660ec2d1e0fdb87915ccf83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3a8723c6c6a70b32e1eb5c770a2a30aa5a5ee3e673cdb06b49866bebbddc8965
MD5 464c68c4bd9a2e1edb3aa7671b74a42c
BLAKE2b-256 23487d248669b3c512318e0ce7ee4d307507fe23292b1ff60cbf2478423da30f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21ca0f87e4a8085aa37ce0187ff9be9f75bff2fd786d3d994273627fa0ee1168
MD5 05d67ddd9b5f8ca9e13f378da7252842
BLAKE2b-256 c15bc403003a994f92e88ba19739c29a6bd66d115c94978b52cb3eb487d847fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8758f00033ccc9997a9ac872eab05dab889a5d066c900f93d9ebe281f3b5d9b4
MD5 f579009889733881e75a098d0514e1bc
BLAKE2b-256 5d9c0b006063e2b4425cef1168d960dfb8dfe15be5c824bf299f80176e4f06e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitstruct-8.23.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e10490382be10c1cea98a9fe46fbcf10f2876cd888ca3b64bfbf05893767a6a3
MD5 a78e54d843edc61097d3a14ea9cb54a1
BLAKE2b-256 9542dd41808a3cdf5dd50c54c7e64c5d3218b84d1af4b02387a89857a47bb4f5

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

8.23.0 This release

100 files

8.22.2

100 files

8.22.1

78 files

8.22.0

64 files

8.21.0

61 files

8.20.0

49 files

8.19.0

43 files

8.18.0

43 files

8.17.0

1 file

8.16.1

1 file

8.15.1

1 file

8.15.0

1 file

8.14.1

1 file

8.14.0

1 file

8.13.0

1 file

8.12.1

1 file

8.12.0

1 file

8.11.1

1 file

8.11.0

1 file

8.10.0

1 file

8.9.0

1 file

8.8.1

1 file

8.8.0

1 file

8.7.3

1 file

8.7.2

1 file

8.7.1

1 file

8.7.0

1 file

8.6.0

1 file

8.5.1

1 file

8.5.0

1 file

8.4.0

1 file

8.3.1

1 file

8.3.0

1 file

8.2.0

1 file

8.1.2

1 file

8.1.1

2 files

8.1.0

2 files

8.0.0

2 files

7.1.0

2 files

6.0.0

2 files

5.2.1

2 files

5.2.0

2 files

5.1.0

2 files

5.0.0

2 files

4.1.0

2 files

4.0.0

2 files

3.10.0

2 files

3.9.0

2 files

3.8.0

2 files

3.7.0

2 files

3.6.1

2 files

3.6.0

2 files

3.5.0

2 files

3.4.0

2 files

3.3.1

2 files

3.3.0

2 files

3.2.0

2 files

3.1.0

2 files

3.0.0

1 file

2.1.4

2 files

2.1.3

2 files

2.1.2

2 files

2.1.1

2 files

2.1.0

2 files

2.0.2

2 files

2.0.1

2 files

2.0.0

2 files

1.1.0

2 files

1.0.1

2 files

1.0.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page