Skip to main content

Construct is a powerful declarative parser (and builder) for binary data.

Instead of writing imperative code to parse a piece of data, you declaratively define a data structure that describes your data. As this data structure is not code, you can use it in one direction to parse data into Pythonic objects, and in the other direction, convert (“build”) objects into binary data.

The library provides both simple, atomic constructs (such as integers of various sizes), as well as composite ones which allow you form hierarchical structures of increasing complexity. Construct features bit and byte granularity, easy debugging and testing, an easy-to-extend subclass system, and lots of primitive constructs to make your work easier:

  • Fields: raw bytes or numerical types

  • Structs and Sequences: combine simpler constructs into more complex ones

  • Adapters: change how data is represented

  • Arrays/Ranges: duplicate constructs

  • Meta-constructs: use the context (history) to compute the size of data

  • If/Switch: branch the computational path based on the context

  • On-demand (lazy) parsing: read only what you require

  • Pointers: jump from here to there in the data stream

Example

A PascalString is a string prefixed by its length:

>>> from construct import *
>>>
>>> PascalString = Struct("PascalString",
...     UBInt8("length"),
...     Bytes("data", lambda ctx: ctx.length),
... )
>>>
>>> PascalString.parse("\x05helloXXX")
Container({'length': 5, 'data': 'hello'})
>>> PascalString.build(Container(length = 6, data = "foobar"))
'\x06foobar'

Instead of specifying the length manually, let’s use an adapter:

>>> PascalString2 = ExprAdapter(PascalString,
...     encoder = lambda obj, ctx: Container(length = len(obj), data = obj),
...     decoder = lambda obj, ctx: obj.data
... )
>>> PascalString2.parse("\x05hello")
'hello'
>>> PascalString2.build("i'm a long string")
"\x11i'm a long string"

See more examples of file formats and network protocols in the repository.

Resources

Construct’s homepage is http://construct.readthedocs.org, where you can find all kinds of docs and resources. The library itself is developed on github; please use github issues to report bugs, and github pull-requests to send in patches. For general discussion or questions, please use the new discussion group.

Requirements

Construct should run on any Python 2.5-3.5 or PyPy implementation.

Its only requirement is six, which is used to overcome the differences between Python 2 and 3.

Release files for ak-construct 2.5.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for ak-construct 2.5.2
File Size Uploaded
ak-construct-2.5.2.tar.gz 58.3 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for ak-construct 2.5.2
File Interpreter ABI Platform
ak_construct-2.5.2-py2.py3-none-any.whl Python 3, Python 2 none any Details

Total release size: 131.5 kB

Release files / ak-construct-2.5.2.tar.gz

Download URL ak-construct-2.5.2.tar.gz
Size 58.3 kB
Tags Source
SHA-256 checksum
How to use checksums
18b9a364723e1f52d907c0038a11033e624ff9ac035a3b6dd40d5fe6d70a7c62
BLAKE2b-256 checksum
How to use checksums
0245d5dfb7790ce40d03108db2ed4a979d7cb8572b4296af26be54b8f6a20a9c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / ak_construct-2.5.2-py2.py3-none-any.whl

Download URL ak_construct-2.5.2-py2.py3-none-any.whl
Size 73.2 kB
Tags Python 2 Python 3
SHA-256 checksum
How to use checksums
6206368eb9bfe2baa9112e0b27e025a0553b6bb6ab27936ca39e3e5052d85fc0
BLAKE2b-256 checksum
How to use checksums
845b570592d94eb7ffb6f11c78a7ed880f50607cbc99f7aab4e6de1435e1a11f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

2.5.2 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page