spacer

Contents   ::   Introduction  »

Quick Links

spacer
spacer
spacer

Construct¶

Sticky
Version 2.5 was released on January 17
Please use the mailing list to ask questions and use github issues to report problems. Please do not email me directly.

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:

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 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.3 implementation.

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

User Guide¶

  • Introduction
    • What is Construct?
    • What is Construct good for?
    • What isn’t Construct good at?
  • The Basics
    • Fields
    • Structs
    • Sequences
    • Repeaters
  • History
    • BitStruct
    • BitField
    • The Bit/Byte Duality
  • Adapting
    • Enums
  • Validating
  • The Context
    • Array
    • RepeatUntil
    • Switch
    • Pointer
    • Anchor
    • OnDemand
  • Strings
  • Miscellaneous
    • Conditional
    • Alignment and Padding
    • Special Constructs
  • Extending Construct
    • Adapters
    • Constructs
  • Debugging Construct
    • Intro
    • Probe
    • Debugger

API Reference¶

  • construct.core – Core data structures
  • construct.adapters – Adapters
  • construct.macros – Macros
  • construct.debug – Debugging

Indices and tables¶

Contents   ::   Introduction  »

© Copyright 2013, Tomer Filiba. Created using Sphinx 1.1.3+.



Brought to you by Read the Docs
gipoco.com is neither affiliated with the authors of this page nor responsible for its contents. This is a safe-cache copy of the original web site.