slackbuilds/python/construct
B. Watson b952b6e8e5 python/construct: Wrap README at 72 columns.
Signed-off-by: B. Watson <yalhcru@gmail.com>
2022-03-17 12:37:54 -04:00
..
README python/construct: Wrap README at 72 columns. 2022-03-17 12:37:54 -04:00
construct.SlackBuild All: Support $PRINT_PACKAGE_NAME env var 2021-07-17 21:55:09 +02:00
construct.info python/construct: Updated for version 2.9.45. 2019-01-19 04:10:39 +07:00
slack-desc python/construct: Fix slack-desc. 2016-11-14 16:47:23 +07:00

README

Construct (python library) 

Construct is a powerful declarative parser (and builder) for 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
 -Tunneling: prefix data with a byte count or compress it

Optional dependancies include Enum34, Numpy, and Arrow.