bitformat


Namebitformat JSON
Version 0.8.1 PyPI version JSON
download
home_pageNone
SummaryA Python library for creating and parsing binary formats.
upload_time2025-10-07 18:49:32
maintainerNone
docs_urlNone
authorNone
requires_python>=3.11
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
[![bitformat](https://raw.githubusercontent.com/scott-griffiths/bitformat/main/doc/bitformat_logo_small.png)](https://github.com/scott-griffiths/bitformat)

A Python library for creating and parsing binary formats.

[![PyPI - Version](https://img.shields.io/pypi/v/bitformat?label=PyPI&logo=pypi&logoColor=white)](https://pypi.org/project/bitformat/)
[![CI badge](https://github.com/scott-griffiths/bitformat/actions/workflows/.github/workflows/test.yml/badge.svg)](https://github.com/scott-griffiths/bitformat/actions/workflows/test.yml)
[![Docs](https://img.shields.io/readthedocs/bitformat?logo=readthedocs&logoColor=white)](https://bitformat.readthedocs.io/en/latest/)
[![Codacy Badge](https://img.shields.io/codacy/grade/b61ae16cc6404d0da5dbcc21ee19ddda?logo=codacy)](https://app.codacy.com/gh/scott-griffiths/bitformat/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
<!--
[![Dependents (via libraries.io)](https://img.shields.io/librariesio/dependents/pypi/bitformat?logo=libraries.io&logoColor=white)](https://libraries.io/pypi/bitformat)
&nbsp; &nbsp;
[![Pepy Total Downloads](https://img.shields.io/pepy/dt/bitformat?logo=python&logoColor=white&labelColor=blue&color=blue)](https://www.pepy.tech/projects/bitformat)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/bitformat?label=%40&labelColor=blue&color=blue)](https://pypistats.org/packages/bitformat)
-->
---------

**bitformat** is a Python module for creating, manipulating and interpreting binary data.
It also supports parsing and creating more complex binary formats.

It is from the author of the widely used [**bitstring**](https://github.com/scott-griffiths/bitstring) module.

----
## TLDR;

Here are a few code snippets to whet the appetite. If anything here looks useful to you then bitformat might be what you need.

Creating and manipulating bits:
```python
    >>> from bitformat import MutableBits, Format, Array
    >>> b = MutableBits('0x123')
    >>> b += '0b110'
    >>> b.replace('0b11', '0xf')
    MutableBits('0b0001001000111111110')
    >>> b.unpack('(u15, [bool;])')
    (2335, (True, True, True, False))
    >>> list(b.to_bits().find_all('0b10'))
    [3, 6, 17]
```

Arrays of bits of a single data type:

```python
    >>> a = Array.from_bits('i5', '0xfeed5')
    >>> a
    Array('i5', [-1, -5, -10, -11])
    >>> a + 10
    Array('i5', [9, 5, 0, -1])
    >>> a.dtype = 'bin4'
    >>> a
    Array('bin4', ['1111', '1110', '1110', '1101', '0101'])
```

Format creation and parsing:

```python
    >>> f = Format("fmt: (x: u3, arr: [i4; {x}], tuple(f16, f32), repeat {x + 1}: bool)")
    >>> f.parse(b'some_byte_data')
    67
    >>> f.pp()
    fmt: (
        x: u3 = 3,
        arr: [i4; {x}] = (-7, -5, 7),
        tuple(f16, f32) = (-0.41845703125, -3.2239261260613716e-10),
        repeat{x + 1}:
            bool = False
            bool = False
            bool = True
            bool = True
    )
    >>> f['arr'].value = (1, 2, 3)
    >>> f.to_bytes()
    b'bGme_byt`'
```

----

## Features
* The `Bits` and `MutableBits` classes represent sequences of binary data of arbitrary length. They provide methods for creating, modifying and interpreting the data.
* The `Format` class provides a way to define a binary format using a simple and flexible syntax.
* A wide array of data types is supported, with no arbitrary restrictions on length.
* Data is always stored as a contiguous array of bits.
* The core is written in Rust for maximum performance.

> [!NOTE]
> To see what has been added, improved or fixed, and also to see what's coming in the next version, see the [release notes](https://github.com/scott-griffiths/bitformat/blob/main/release_notes.md).

## Installation

There should be pre-built wheels available for most platforms so you can just `pip install bitformat`. If a wheel isn't available then please file a bug report and optionally take a look at the `build.sh` script.

## Documentation

* [The bitformat documentation](https://bitformat.readthedocs.io/en/latest/) includes a full reference for the library.
* [A Tour of bitformat](https://nbviewer.org/github/scott-griffiths/bitformat/blob/main/doc/bitformat_tour.ipynb) is a notebook
which gives a quick introduction to the library and some worked examples.

## Some Examples

### Creating some Bits

A variety of constructor methods are available to create `Bits`, including from binary, hexadecimal or octal strings, formatted strings, byte literals and iterables.

```python
>>> from bitformat import *

>>> a = Bits('0b1010')  # Create from a binary string
>>> b = Bits('u12 = 54')  # Create from a formatted string.
>>> c = Bits.from_bytes(b'\x01\x02\x03')  # Create from a bytes or bytearray object.
>>> d = Bits.from_dtype('f16', -0.75)  # Pack a value into a data type.
>>> e = Bits.from_joined([a, b, c, d])  # The best way to join lots of bits together.
```

### Interpreting those Bits

Although the examples above were created from a variety of data types, the `Bits` instance doesn't retain any knowledge of how it was created - it's just a sequence of bits.
You can therefore interpret them however you'd like:

```python
>>> a.i
-6
>>> b.hex
'036'
>>> c.unpack(['u4', 'f16', 'u4'])
[0, 0.0005035400390625, 3]
>>> d.bytes
b'\xba\x00'
```

The `unpack` method is available as a general-case way to unpack the bits into a single or multiple data types.
If you only want to unpack to a single data type you can use properties of the `Bits` as a short-cut.

### Data types

A wide range of data types are supported. These are essentially descriptions on how binary data can be converted to a useful value. The `Dtype` class is used to define these, but usually just the string representation can be used.

Some example data type strings are:

* `'u3'` - a 3 bit unsigned integer.
* `'i32_le'` - a 32 bit little-endian signed integer.
* `'f64'` - a 64 bit IEEE float. Lengths of 16, 32 and 64 are supported.
* `'bool'` - a single bit boolean value.
* `'bytes10'` - a 10 byte sequence.
* `'hex'` - a hexadecimal string.
* `'bin'` - a binary string.
* `'[u8; 40]'` - an array of 40 unsigned 8 bit integers.

Byte endianness for floating point and integer data types is specified with `_le`, `_be` and `_ne` suffixes to the base type. 

### Bit operations

An extensive set of operations are available to query `Bits` or to create new ones. For example:

```python
>>> a + b  # Concatenation
Bits('0xa036')
>>> c.find('0b11')  # Returns found bit position
22
>>> b.replace('0b1', '0xfe')
Bits('0x03fbf9fdfc')
>>> b[0:10] | d[2:12]  # Slicing and logical operators
Bits('0b1110101101')
```

### Arrays

An `Array` class is provided which stores a contiguous sequence of `Bits` of the same data type.
This is similar to the `array` type in the standard module of the same name, but it's not restricted to just a dozen or so types.

```python
>>> r = Array('i5', [4, -3, 0, 1, -5, 15])  # An array of 5 bit signed ints
>>> r -= 2  # Operates on each element
>>> r.to_list()
[2, -5, -2, -1, -7, 13]
>>> r.dtype = 'u6'  # You can freely change the data type
>>> r
Array('u6', [5, 47, 55, 60, 45])
>>> r.to_bits()
Bits('0b000101101111110111111100101101')
```

### A `Format` example

The `Format` class can be used to give structure to bits, as well as storing the data in a human-readable form.

```python
>>> f = Format('(width: u12, height: u12, flags: [bool; 4])')
>>> f.pack([320, 240, [True, False, True, False]])
>>> print(f)
(
    width: u12 = 320
    height: u12 = 240
    flags: [bool; 4] = (True, False, True, False)
)
>>> f['height'].value /= 2
>>> f.to_bits()
Bits('0x140078a')
>>> f.to_bits() == 'u12=320, u12=120, 0b1010'
True
```

The `Format` and its fields can optionally have names (the `Format` above is unnamed, but its fields are named).
In this example the `pack` method was used with appropriate values, which then returned a `Bits` object.
The `Format` now contains all the interpreted values, which can be easily accessed and modified.

The final line in the example above demonstrates how new `Bits` objects can be created when needed by promoting other types, in this case the formatted string is promoted to a `Bits` object before the comparison is made.

The `Format` can be used symmetrically to both create and parse binary data:

```python
>>> f.parse(b'x\x048\x10')
28
>>> f
Format([
    'width: u12 = 1920',
    'height: u12 = 1080',
    'flags: [bool; 4] = (False, False, False, True)'
])
```

The `parse` method is able to lazily parse the input bytes, and simply returns the number of bits that were consumed. The actual values of the individual fields aren't calculated until they are needed, which allows large and complex file formats to be efficiently dealt with.

## More to come

The `bitformat` library is still in beta and is being actively developed.
The first release was in September 2024, with the second arriving in January 2025 and the third in April. Version 0.5 was released in June 2025. More features are being added steadily.

There are a number of important features planned, some of which are from the `bitstring` library on which much of the core is based, and others are needed for a full binary format experience.

The (unordered) :todo: list includes:


* **~~Streaming methods~~.**  :sparkles: Done in v0.2 - see the `Reader` class :sparkles: .
* **~~Field expressions~~.**  :sparkles: Done in v0.3 :sparkles:  Rather than hard-coding everything in a field, some parts will be calculated during the parsing process. For example in the format `'(w: u16, h: u16, [u8; {w * h}])'` the size of the `'u8'` array would depend on the values parsed just before it.
* **~~New field types~~.** :sparkles: Done in v0.3 :sparkles:  Fields like `Repeat` and `If` are planned which will allow more flexible formats to be written.
* **Exotic floating point types.** In `bitstring` there are a number of extra floating point types such as `bfloat` and the MXFP 8, 6 and 4-bit variants. These will be ported over to `bitformat`.
* **Performance improvements.** A primary focus on the design of `bitformat` is that it should be fast. Version 0.5 received some significant speed boosts and is now competitive for _most_ use cases.
* **LSB0.** Currently all bit positions are done with the most significant bit being bit zero (MSB0). I plan to add support for least significant bit zero (LSB0) bit numbering as well.

<sub>Copyright (c) 2024-2025 Scott Griffiths</sub>


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "bitformat",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Scott Griffiths <dr.scottgriffiths@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/cf/5a/f31ebea681c52f57200b86ff86dfd0786dce466c4a4ec8869e7c6020a386/bitformat-0.8.1.tar.gz",
    "platform": null,
    "description": "\r\n[![bitformat](https://raw.githubusercontent.com/scott-griffiths/bitformat/main/doc/bitformat_logo_small.png)](https://github.com/scott-griffiths/bitformat)\r\n\r\nA Python library for creating and parsing binary formats.\r\n\r\n[![PyPI - Version](https://img.shields.io/pypi/v/bitformat?label=PyPI&logo=pypi&logoColor=white)](https://pypi.org/project/bitformat/)\r\n[![CI badge](https://github.com/scott-griffiths/bitformat/actions/workflows/.github/workflows/test.yml/badge.svg)](https://github.com/scott-griffiths/bitformat/actions/workflows/test.yml)\r\n[![Docs](https://img.shields.io/readthedocs/bitformat?logo=readthedocs&logoColor=white)](https://bitformat.readthedocs.io/en/latest/)\r\n[![Codacy Badge](https://img.shields.io/codacy/grade/b61ae16cc6404d0da5dbcc21ee19ddda?logo=codacy)](https://app.codacy.com/gh/scott-griffiths/bitformat/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)\r\n<!--\r\n[![Dependents (via libraries.io)](https://img.shields.io/librariesio/dependents/pypi/bitformat?logo=libraries.io&logoColor=white)](https://libraries.io/pypi/bitformat)\r\n&nbsp; &nbsp;\r\n[![Pepy Total Downloads](https://img.shields.io/pepy/dt/bitformat?logo=python&logoColor=white&labelColor=blue&color=blue)](https://www.pepy.tech/projects/bitformat)\r\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/bitformat?label=%40&labelColor=blue&color=blue)](https://pypistats.org/packages/bitformat)\r\n-->\r\n---------\r\n\r\n**bitformat** is a Python module for creating, manipulating and interpreting binary data.\r\nIt also supports parsing and creating more complex binary formats.\r\n\r\nIt is from the author of the widely used [**bitstring**](https://github.com/scott-griffiths/bitstring) module.\r\n\r\n----\r\n## TLDR;\r\n\r\nHere are a few code snippets to whet the appetite. If anything here looks useful to you then bitformat might be what you need.\r\n\r\nCreating and manipulating bits:\r\n```python\r\n    >>> from bitformat import MutableBits, Format, Array\r\n    >>> b = MutableBits('0x123')\r\n    >>> b += '0b110'\r\n    >>> b.replace('0b11', '0xf')\r\n    MutableBits('0b0001001000111111110')\r\n    >>> b.unpack('(u15, [bool;])')\r\n    (2335, (True, True, True, False))\r\n    >>> list(b.to_bits().find_all('0b10'))\r\n    [3, 6, 17]\r\n```\r\n\r\nArrays of bits of a single data type:\r\n\r\n```python\r\n    >>> a = Array.from_bits('i5', '0xfeed5')\r\n    >>> a\r\n    Array('i5', [-1, -5, -10, -11])\r\n    >>> a + 10\r\n    Array('i5', [9, 5, 0, -1])\r\n    >>> a.dtype = 'bin4'\r\n    >>> a\r\n    Array('bin4', ['1111', '1110', '1110', '1101', '0101'])\r\n```\r\n\r\nFormat creation and parsing:\r\n\r\n```python\r\n    >>> f = Format(\"fmt: (x: u3, arr: [i4; {x}], tuple(f16, f32), repeat {x + 1}: bool)\")\r\n    >>> f.parse(b'some_byte_data')\r\n    67\r\n    >>> f.pp()\r\n    fmt: (\r\n        x: u3 = 3,\r\n        arr: [i4; {x}] = (-7, -5, 7),\r\n        tuple(f16, f32) = (-0.41845703125, -3.2239261260613716e-10),\r\n        repeat{x + 1}:\r\n            bool = False\r\n            bool = False\r\n            bool = True\r\n            bool = True\r\n    )\r\n    >>> f['arr'].value = (1, 2, 3)\r\n    >>> f.to_bytes()\r\n    b'bGme_byt`'\r\n```\r\n\r\n----\r\n\r\n## Features\r\n* The `Bits` and `MutableBits` classes represent sequences of binary data of arbitrary length. They provide methods for creating, modifying and interpreting the data.\r\n* The `Format` class provides a way to define a binary format using a simple and flexible syntax.\r\n* A wide array of data types is supported, with no arbitrary restrictions on length.\r\n* Data is always stored as a contiguous array of bits.\r\n* The core is written in Rust for maximum performance.\r\n\r\n> [!NOTE]\r\n> To see what has been added, improved or fixed, and also to see what's coming in the next version, see the [release notes](https://github.com/scott-griffiths/bitformat/blob/main/release_notes.md).\r\n\r\n## Installation\r\n\r\nThere should be pre-built wheels available for most platforms so you can just `pip install bitformat`. If a wheel isn't available then please file a bug report and optionally take a look at the `build.sh` script.\r\n\r\n## Documentation\r\n\r\n* [The bitformat documentation](https://bitformat.readthedocs.io/en/latest/) includes a full reference for the library.\r\n* [A Tour of bitformat](https://nbviewer.org/github/scott-griffiths/bitformat/blob/main/doc/bitformat_tour.ipynb) is a notebook\r\nwhich gives a quick introduction to the library and some worked examples.\r\n\r\n## Some Examples\r\n\r\n### Creating some Bits\r\n\r\nA variety of constructor methods are available to create `Bits`, including from binary, hexadecimal or octal strings, formatted strings, byte literals and iterables.\r\n\r\n```python\r\n>>> from bitformat import *\r\n\r\n>>> a = Bits('0b1010')  # Create from a binary string\r\n>>> b = Bits('u12 = 54')  # Create from a formatted string.\r\n>>> c = Bits.from_bytes(b'\\x01\\x02\\x03')  # Create from a bytes or bytearray object.\r\n>>> d = Bits.from_dtype('f16', -0.75)  # Pack a value into a data type.\r\n>>> e = Bits.from_joined([a, b, c, d])  # The best way to join lots of bits together.\r\n```\r\n\r\n### Interpreting those Bits\r\n\r\nAlthough the examples above were created from a variety of data types, the `Bits` instance doesn't retain any knowledge of how it was created - it's just a sequence of bits.\r\nYou can therefore interpret them however you'd like:\r\n\r\n```python\r\n>>> a.i\r\n-6\r\n>>> b.hex\r\n'036'\r\n>>> c.unpack(['u4', 'f16', 'u4'])\r\n[0, 0.0005035400390625, 3]\r\n>>> d.bytes\r\nb'\\xba\\x00'\r\n```\r\n\r\nThe `unpack` method is available as a general-case way to unpack the bits into a single or multiple data types.\r\nIf you only want to unpack to a single data type you can use properties of the `Bits` as a short-cut.\r\n\r\n### Data types\r\n\r\nA wide range of data types are supported. These are essentially descriptions on how binary data can be converted to a useful value. The `Dtype` class is used to define these, but usually just the string representation can be used.\r\n\r\nSome example data type strings are:\r\n\r\n* `'u3'` - a 3 bit unsigned integer.\r\n* `'i32_le'` - a 32 bit little-endian signed integer.\r\n* `'f64'` - a 64 bit IEEE float. Lengths of 16, 32 and 64 are supported.\r\n* `'bool'` - a single bit boolean value.\r\n* `'bytes10'` - a 10 byte sequence.\r\n* `'hex'` - a hexadecimal string.\r\n* `'bin'` - a binary string.\r\n* `'[u8; 40]'` - an array of 40 unsigned 8 bit integers.\r\n\r\nByte endianness for floating point and integer data types is specified with `_le`, `_be` and `_ne` suffixes to the base type. \r\n\r\n### Bit operations\r\n\r\nAn extensive set of operations are available to query `Bits` or to create new ones. For example:\r\n\r\n```python\r\n>>> a + b  # Concatenation\r\nBits('0xa036')\r\n>>> c.find('0b11')  # Returns found bit position\r\n22\r\n>>> b.replace('0b1', '0xfe')\r\nBits('0x03fbf9fdfc')\r\n>>> b[0:10] | d[2:12]  # Slicing and logical operators\r\nBits('0b1110101101')\r\n```\r\n\r\n### Arrays\r\n\r\nAn `Array` class is provided which stores a contiguous sequence of `Bits` of the same data type.\r\nThis is similar to the `array` type in the standard module of the same name, but it's not restricted to just a dozen or so types.\r\n\r\n```python\r\n>>> r = Array('i5', [4, -3, 0, 1, -5, 15])  # An array of 5 bit signed ints\r\n>>> r -= 2  # Operates on each element\r\n>>> r.to_list()\r\n[2, -5, -2, -1, -7, 13]\r\n>>> r.dtype = 'u6'  # You can freely change the data type\r\n>>> r\r\nArray('u6', [5, 47, 55, 60, 45])\r\n>>> r.to_bits()\r\nBits('0b000101101111110111111100101101')\r\n```\r\n\r\n### A `Format` example\r\n\r\nThe `Format` class can be used to give structure to bits, as well as storing the data in a human-readable form.\r\n\r\n```python\r\n>>> f = Format('(width: u12, height: u12, flags: [bool; 4])')\r\n>>> f.pack([320, 240, [True, False, True, False]])\r\n>>> print(f)\r\n(\r\n    width: u12 = 320\r\n    height: u12 = 240\r\n    flags: [bool; 4] = (True, False, True, False)\r\n)\r\n>>> f['height'].value /= 2\r\n>>> f.to_bits()\r\nBits('0x140078a')\r\n>>> f.to_bits() == 'u12=320, u12=120, 0b1010'\r\nTrue\r\n```\r\n\r\nThe `Format` and its fields can optionally have names (the `Format` above is unnamed, but its fields are named).\r\nIn this example the `pack` method was used with appropriate values, which then returned a `Bits` object.\r\nThe `Format` now contains all the interpreted values, which can be easily accessed and modified.\r\n\r\nThe final line in the example above demonstrates how new `Bits` objects can be created when needed by promoting other types, in this case the formatted string is promoted to a `Bits` object before the comparison is made.\r\n\r\nThe `Format` can be used symmetrically to both create and parse binary data:\r\n\r\n```python\r\n>>> f.parse(b'x\\x048\\x10')\r\n28\r\n>>> f\r\nFormat([\r\n    'width: u12 = 1920',\r\n    'height: u12 = 1080',\r\n    'flags: [bool; 4] = (False, False, False, True)'\r\n])\r\n```\r\n\r\nThe `parse` method is able to lazily parse the input bytes, and simply returns the number of bits that were consumed. The actual values of the individual fields aren't calculated until they are needed, which allows large and complex file formats to be efficiently dealt with.\r\n\r\n## More to come\r\n\r\nThe `bitformat` library is still in beta and is being actively developed.\r\nThe first release was in September 2024, with the second arriving in January 2025 and the third in April. Version 0.5 was released in June 2025. More features are being added steadily.\r\n\r\nThere are a number of important features planned, some of which are from the `bitstring` library on which much of the core is based, and others are needed for a full binary format experience.\r\n\r\nThe (unordered) :todo: list includes:\r\n\r\n\r\n* **~~Streaming methods~~.**  :sparkles: Done in v0.2 - see the `Reader` class :sparkles: .\r\n* **~~Field expressions~~.**  :sparkles: Done in v0.3 :sparkles:  Rather than hard-coding everything in a field, some parts will be calculated during the parsing process. For example in the format `'(w: u16, h: u16, [u8; {w * h}])'` the size of the `'u8'` array would depend on the values parsed just before it.\r\n* **~~New field types~~.** :sparkles: Done in v0.3 :sparkles:  Fields like `Repeat` and `If` are planned which will allow more flexible formats to be written.\r\n* **Exotic floating point types.** In `bitstring` there are a number of extra floating point types such as `bfloat` and the MXFP 8, 6 and 4-bit variants. These will be ported over to `bitformat`.\r\n* **Performance improvements.** A primary focus on the design of `bitformat` is that it should be fast. Version 0.5 received some significant speed boosts and is now competitive for _most_ use cases.\r\n* **LSB0.** Currently all bit positions are done with the most significant bit being bit zero (MSB0). I plan to add support for least significant bit zero (LSB0) bit numbering as well.\r\n\r\n<sub>Copyright (c) 2024-2025 Scott Griffiths</sub>\r\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A Python library for creating and parsing binary formats.",
    "version": "0.8.1",
    "project_urls": {
        "documentation": "https://bitformat.readthedocs.io/",
        "homepage": "https://github.com/scott-griffiths/bitformat"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f1175b67c3ba7fd6d86b87a361e2635cd0d8c4013d630bacc200762911f2b2e7",
                "md5": "3ab83a8c19a3ee073e7413545c7b6134",
                "sha256": "ebbff97ea8b1d0168c0c0c15756b959a8f9093a07874bfa1b744d3c9ffda207c"
            },
            "downloads": -1,
            "filename": "bitformat-0.8.1-cp311-abi3-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ab83a8c19a3ee073e7413545c7b6134",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 478407,
            "upload_time": "2025-10-07T18:49:15",
            "upload_time_iso_8601": "2025-10-07T18:49:15.062413Z",
            "url": "https://files.pythonhosted.org/packages/f1/17/5b67c3ba7fd6d86b87a361e2635cd0d8c4013d630bacc200762911f2b2e7/bitformat-0.8.1-cp311-abi3-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6bfc04103346d150abca2925b67e95e74ea615b093772118f1ad5e24b05bb919",
                "md5": "8642432e9354de141661fe10d17e6e94",
                "sha256": "411fd5937e9ab4442fcb861e629efc2ecbae2242fa398a7a82d241233f33d8e3"
            },
            "downloads": -1,
            "filename": "bitformat-0.8.1-cp311-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8642432e9354de141661fe10d17e6e94",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 452200,
            "upload_time": "2025-10-07T18:49:16",
            "upload_time_iso_8601": "2025-10-07T18:49:16.310835Z",
            "url": "https://files.pythonhosted.org/packages/6b/fc/04103346d150abca2925b67e95e74ea615b093772118f1ad5e24b05bb919/bitformat-0.8.1-cp311-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69292d8ba4668e41acd42882aafc3ecd2e2f12617b83f555f8a8018e4240b773",
                "md5": "3fdaf095817923897583f12674bfef90",
                "sha256": "05ab6d70bf64a20486b6a658335e3606ad6faa208faa9cd14b5bd2ac2e477c00"
            },
            "downloads": -1,
            "filename": "bitformat-0.8.1-cp311-abi3-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
            "has_sig": false,
            "md5_digest": "3fdaf095817923897583f12674bfef90",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 539881,
            "upload_time": "2025-10-07T18:49:17",
            "upload_time_iso_8601": "2025-10-07T18:49:17.367048Z",
            "url": "https://files.pythonhosted.org/packages/69/29/2d8ba4668e41acd42882aafc3ecd2e2f12617b83f555f8a8018e4240b773/bitformat-0.8.1-cp311-abi3-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bfe8338e6c0ecd34c9446a508283b7af0867be144a86d20c2a821bda5ca87c3d",
                "md5": "489d178db1de91276e2884cd71610814",
                "sha256": "212a4572af93a154370bfa500497a0c7e4341759b333e3c44d3cd4b59409a67c"
            },
            "downloads": -1,
            "filename": "bitformat-0.8.1-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "489d178db1de91276e2884cd71610814",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 492221,
            "upload_time": "2025-10-07T18:49:18",
            "upload_time_iso_8601": "2025-10-07T18:49:18.976356Z",
            "url": "https://files.pythonhosted.org/packages/bf/e8/338e6c0ecd34c9446a508283b7af0867be144a86d20c2a821bda5ca87c3d/bitformat-0.8.1-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f6e408fbae1b55b5283201280962ccc13fa4a3f1d7fc2c1e6171062d785ff74f",
                "md5": "68d9f0c6f0b2c22356d785004c2ff74b",
                "sha256": "5d6a8d132dc4ff089787ccec1b1445e500659827f948d879b0938ca1efc20f7e"
            },
            "downloads": -1,
            "filename": "bitformat-0.8.1-cp311-abi3-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "68d9f0c6f0b2c22356d785004c2ff74b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 644930,
            "upload_time": "2025-10-07T18:49:20",
            "upload_time_iso_8601": "2025-10-07T18:49:20.411246Z",
            "url": "https://files.pythonhosted.org/packages/f6/e4/08fbae1b55b5283201280962ccc13fa4a3f1d7fc2c1e6171062d785ff74f/bitformat-0.8.1-cp311-abi3-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5a7e564dac2e1cf9367c6c863f760cf3040b5325ec15bf91c21dc0f65bb6a302",
                "md5": "564247a4d2992a5cf575b26922d89812",
                "sha256": "6b4b862a77e9dab8a2fa446d379aa66bd7bfd5d1c54edefa310de0b2f1111be0"
            },
            "downloads": -1,
            "filename": "bitformat-0.8.1-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "564247a4d2992a5cf575b26922d89812",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 500498,
            "upload_time": "2025-10-07T18:49:22",
            "upload_time_iso_8601": "2025-10-07T18:49:22.268254Z",
            "url": "https://files.pythonhosted.org/packages/5a/7e/564dac2e1cf9367c6c863f760cf3040b5325ec15bf91c21dc0f65bb6a302/bitformat-0.8.1-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e59dc7553e5541bf8c25d6e96cc05440d73678b71065e02b429a16172185265",
                "md5": "48f6677587be1a757ab287bc0d17f458",
                "sha256": "304f4596eccb782bd93776d4b0a52465aa93e5a4950e1231b30f0c4e9759baf0"
            },
            "downloads": -1,
            "filename": "bitformat-0.8.1-cp311-abi3-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "48f6677587be1a757ab287bc0d17f458",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 558021,
            "upload_time": "2025-10-07T18:49:24",
            "upload_time_iso_8601": "2025-10-07T18:49:24.110155Z",
            "url": "https://files.pythonhosted.org/packages/8e/59/dc7553e5541bf8c25d6e96cc05440d73678b71065e02b429a16172185265/bitformat-0.8.1-cp311-abi3-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab7f20d5d60531df5971a75aeeef0eb0d464cf479dc0910690c867736d583b84",
                "md5": "95e695e55f8c9a69a6bd234c3c2e1b39",
                "sha256": "c26f0f2c7a062973376a6977e60668db5410af158820ab8516303b87baddddd7"
            },
            "downloads": -1,
            "filename": "bitformat-0.8.1-cp311-abi3-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "95e695e55f8c9a69a6bd234c3c2e1b39",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 686495,
            "upload_time": "2025-10-07T18:49:25",
            "upload_time_iso_8601": "2025-10-07T18:49:25.537939Z",
            "url": "https://files.pythonhosted.org/packages/ab/7f/20d5d60531df5971a75aeeef0eb0d464cf479dc0910690c867736d583b84/bitformat-0.8.1-cp311-abi3-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db70d542830a2e2c69d28f9ff2fc88a8ff2c2c3a872cf7ca482c8469a14ecd1b",
                "md5": "65a1c27b2c0df61a227e118141b0a771",
                "sha256": "1e8ccc10c933571a0130a05900385a2138d9b45dc6c712438697c5bd3246781d"
            },
            "downloads": -1,
            "filename": "bitformat-0.8.1-cp311-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "65a1c27b2c0df61a227e118141b0a771",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 579127,
            "upload_time": "2025-10-07T18:49:26",
            "upload_time_iso_8601": "2025-10-07T18:49:26.548373Z",
            "url": "https://files.pythonhosted.org/packages/db/70/d542830a2e2c69d28f9ff2fc88a8ff2c2c3a872cf7ca482c8469a14ecd1b/bitformat-0.8.1-cp311-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a70540a0c3111001a86aae03f90c493fbff121f63d255678199d7dd1657a4cf9",
                "md5": "1620a8e985525ad573540953615cd909",
                "sha256": "39e34a08e3c74f95576e5c00df7e16eec22a82c05b1c34ce80117af763391d29"
            },
            "downloads": -1,
            "filename": "bitformat-0.8.1-cp311-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "1620a8e985525ad573540953615cd909",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 334561,
            "upload_time": "2025-10-07T18:49:28",
            "upload_time_iso_8601": "2025-10-07T18:49:28.005230Z",
            "url": "https://files.pythonhosted.org/packages/a7/05/40a0c3111001a86aae03f90c493fbff121f63d255678199d7dd1657a4cf9/bitformat-0.8.1-cp311-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "62020715474739f2f8ea56b4c13a5b1a4457f08807adf359dcf2ad4e26c116b8",
                "md5": "26a324700aaa6833bbb341dca6d36d18",
                "sha256": "d87045deffa85e9d4a3c3fa1af875947554ac0091957228a213fc499d39422e1"
            },
            "downloads": -1,
            "filename": "bitformat-0.8.1-cp311-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "26a324700aaa6833bbb341dca6d36d18",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 348717,
            "upload_time": "2025-10-07T18:49:28",
            "upload_time_iso_8601": "2025-10-07T18:49:28.978723Z",
            "url": "https://files.pythonhosted.org/packages/62/02/0715474739f2f8ea56b4c13a5b1a4457f08807adf359dcf2ad4e26c116b8/bitformat-0.8.1-cp311-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "347c7996a0944d7cd11a52f248d7f9d1c02530abbf84b51cb1c349ee528597bd",
                "md5": "916bebc733939e97d16ec111aa710fcd",
                "sha256": "d05ca7eb1aa8452326fca81b65ca96b5a5d848ce80bf0f4732a61a239ffdbc3c"
            },
            "downloads": -1,
            "filename": "bitformat-0.8.1-cp314-cp314t-win32.whl",
            "has_sig": false,
            "md5_digest": "916bebc733939e97d16ec111aa710fcd",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.11",
            "size": 333503,
            "upload_time": "2025-10-07T18:49:30",
            "upload_time_iso_8601": "2025-10-07T18:49:30.145537Z",
            "url": "https://files.pythonhosted.org/packages/34/7c/7996a0944d7cd11a52f248d7f9d1c02530abbf84b51cb1c349ee528597bd/bitformat-0.8.1-cp314-cp314t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0ed9c688020b878866181369230cb19ce9dbc0a923d01bc502ee57079c4e584",
                "md5": "2d3a82248a1e5f2d00f75ab9c2cac14a",
                "sha256": "da92f10ab8f5f15ffcf1bb05bba11f8adfed9c82a4065271e6668fb179244517"
            },
            "downloads": -1,
            "filename": "bitformat-0.8.1-cp314-cp314t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2d3a82248a1e5f2d00f75ab9c2cac14a",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.11",
            "size": 349898,
            "upload_time": "2025-10-07T18:49:31",
            "upload_time_iso_8601": "2025-10-07T18:49:31.426789Z",
            "url": "https://files.pythonhosted.org/packages/a0/ed/9c688020b878866181369230cb19ce9dbc0a923d01bc502ee57079c4e584/bitformat-0.8.1-cp314-cp314t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf5af31ebea681c52f57200b86ff86dfd0786dce466c4a4ec8869e7c6020a386",
                "md5": "63a3031993af30f4fc0720228a696d6f",
                "sha256": "9aad6ebd310c2678db45c9e3867cb2b4657b7722b5833f18d741c73f668df3aa"
            },
            "downloads": -1,
            "filename": "bitformat-0.8.1.tar.gz",
            "has_sig": false,
            "md5_digest": "63a3031993af30f4fc0720228a696d6f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 4179367,
            "upload_time": "2025-10-07T18:49:32",
            "upload_time_iso_8601": "2025-10-07T18:49:32.818001Z",
            "url": "https://files.pythonhosted.org/packages/cf/5a/f31ebea681c52f57200b86ff86dfd0786dce466c4a4ec8869e7c6020a386/bitformat-0.8.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-07 18:49:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "scott-griffiths",
    "github_project": "bitformat",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "bitformat"
}
        
Elapsed time: 2.99155s