Skip to main content

Library to pack and unpack structurized binary data.

Project description

Caterpillar - 🐛

python Latest Version Build and Deploy Docs Run Tests GitHub issues GitHub License

Caterpillar is a Python 3.12+ library to pack and unpack structurized binary data (with support for 3.10+). It enhances the capabilities of Python Struct by enabling direct class declaration. More information about the different configuration options will be added in the future. Documentation is here >.

Caterpillar is able to:

  • Pack and unpack data just from processing Python class definitions (including support for powerful bitfields, c++-like templates and c-like unions!),
  • apply a wide range of data types (with endianess and architecture configuration),
  • dynamically adapt structs based on their inheritance layout,
  • reduce the used memory space using __slots__,
  • allowing you to place conditional statements into class definitions,
  • insert proper types into the class definition to support documentation and
  • it helps you to create cleaner and more compact code.
  • There is also a feature that lets you dynamically change the endian within a struct!
  • You can even extend Caterpillar and write your parsing logic in C or C++
  • All struct definitions can be typing compliant!!! (tested with pyright)

Give me some code!

The following code is typing compliant, meaning your static type checker won't scream at you when developing with this code.

If you want to check out the default syntax, open this block.
from caterpillar.py import *
from caterpillar.types import *

@bitfield(order=LittleEndian)
class Header:
    version : 4                   # 4bit integer
    valid   : 1                   # 1bit flag (boolean)
    ident   : (8, CharFactory)    # 8bit char
    # automatic alignment to 16bits

THE_KEY = b"ITS MAGIC"

@struct(order=LittleEndian, kw_only=True)
class Format:
    magic  : THE_KEY                      # Supports string and byte constants directly
    header : Header
    a      : uint8                        # Primitive data types
    b      : Dynamic + int32              # dynamic endian based on global config
    length : uint8                        # String fields with computed lengths
    name   : String(this.length)          #  -> you can also use Prefixed(uint8)

    # custom actions, e.g. for hashes
    _hash_begin : DigestField.begin("hash", Md5_Algo)
    # Sequences with prefixed, computed lengths    -+ part of the MD5 hash
    names       : CString[uint8::]               #  |
    #                                              -+
    # automatic hash creation and verification + default value
    hash        : Md5_Field("hash", verify=True)

# Creation, packing and unpacking remains the same
from caterpillar.py import *
from caterpillar.types import *

@bitfield(order=LittleEndian)
class Header:
    version : int4_t                   # 4bit integer
    valid   : int1_t                   # 1bit flag (boolean)
    ident   : f[str, (8, CharFactory)] # 8bit char
    # automatic alignment to 16bits

THE_KEY = b"ITS MAGIC"

@struct(order=LittleEndian, kw_only=True)
class Format:
    magic  : f[bytes, THE_KEY] = THE_KEY  # Supports string and byte constants directly
    header : Header
    a      : uint8_t                      # Primitive data types
    b      : f[int, Dynamic + int32]      # dynamic endian based on global config
    length : uint8_t                      # String fields with computed lengths
    name   : f[str, String(this.length)]  #  -> you can also use Prefixed(uint8)

    # custom actions, e.g. for hashes
    _hash_begin : f[None, DigestField.begin("hash", Md5_Algo)] = None
    # Sequences with prefixed, computed lengths    -+ part of the MD5 hash
    names       : f[list[str], CString[uint8::]] #  |
    #                                              -+
    # automatic hash creation and verification + default value
    hash        : f[bytes, Md5_Field("hash", verify=True)] = b""

# Creation (keyword-only arguments, magic is auto-inferred):
obj = Format(
    header=Header(version=2, valid=True, ident="F"),
    a=1,
    b=2,
    length=3,
    name="foo",
    names=["a", "b"]
)

# Packing the object; reads as 'PACK obj FROM Format'
# objects of struct classes can be packed right away
data_le = pack(obj, Format)
# results in: b'ITS MAGIC0*\x01\x02\x00\x00\x00\x03foo\x02a\x00b\x00)\x9a...'

# Unpacking the binary data, reads as 'UNPACK Format FROM blob'
obj2 = unpack(Format, data_le)
assert obj2.names == obj.names

# to pack with a different endian for fields 'a' and 'b', use 'order'
data_be = pack(obj, Format, order=BigEndian)
assert data_le != data_be

[!NOTE] Python 3.14 changes when class-body __annotations__ are available. Digest context managers still need the explicit DigestField form on Python 3.14+, but conditional with blocks are supported through explicit metadata: with If(condition) as when: plus f[..., when] for one field or Start(when) / End(when) for a block. For conditional variants of one attribute, use Branch(When(...), Otherwise(...)).

This library offers extensive functionality beyond basic struct handling. For further details on its powerful features, explore the official documentation, examples, and test cases.

Installation

[!NOTE] As of Caterpillar v2.1.2 it is possible to install the library without the need of compiling the C extension.

PIP installation (Python-only)

pip install caterpillar-py

Python-only installation

pip install "caterpillar[all]@git+https://github.com/MatrixEditor/caterpillar"

Installation + C-extension

pip install "caterpillar[all]@git+https://github.com/MatrixEditor/caterpillar/#subdirectory=src/ccaterpillar"

Starting Point

Please visit the Documentation, it contains a complete tutorial on how to use this library.

Other Approaches

A list of similar approaches to parsing structured binary data with Python can be taken from below:

The documentation also provides a Comparison to these approaches.

License

Distributed under the GNU General Public License (V3). See License for more information.

Project details


Download files

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

Source Distribution

caterpillar_py-2.9.0.tar.gz (129.0 kB view details)

Uploaded Source

Built Distribution

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

caterpillar_py-2.9.0-py3-none-any.whl (162.1 kB view details)

Uploaded Python 3

File details

Details for the file caterpillar_py-2.9.0.tar.gz.

File metadata

  • Download URL: caterpillar_py-2.9.0.tar.gz
  • Upload date:
  • Size: 129.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for caterpillar_py-2.9.0.tar.gz
Algorithm Hash digest
SHA256 c75605e4f93022fc41abfd81a96e84de13b095bb3a03d87392a38fb2699d1747
MD5 836ee9e5f7720dc48eca57a91d018b6a
BLAKE2b-256 f7912ffcce444c7cf9e8f0e64ee83692ffc8a09de75339aa6801884905a6b546

See more details on using hashes here.

Provenance

The following attestation bundles were made for caterpillar_py-2.9.0.tar.gz:

Publisher: python-publish.yml on MatrixEditor/caterpillar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caterpillar_py-2.9.0-py3-none-any.whl.

File metadata

  • Download URL: caterpillar_py-2.9.0-py3-none-any.whl
  • Upload date:
  • Size: 162.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for caterpillar_py-2.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 39c75b7fdf36d62c34e009f579f5ababaac4472b16344abb702a7c9ceaf36235
MD5 9422e79739a8e65eb723f602c050a77b
BLAKE2b-256 d3910e0e8ada0892e35cc8ea75318daf1592e65b172801ea57d835c04f017bac

See more details on using hashes here.

Provenance

The following attestation bundles were made for caterpillar_py-2.9.0-py3-none-any.whl:

Publisher: python-publish.yml on MatrixEditor/caterpillar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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