construct
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
- Developed at devel:languages:python
-
9
derived packages
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout openSUSE:Factory/python-construct && cd $_
- Create Badge
Source Files
Filename | Size | Changed |
---|---|---|
_multibuild | 0000000053 53 Bytes | |
construct-2.10.70.tar.gz | 0001196623 1.14 MB | |
python-construct.changes | 0000005506 5.38 KB | |
python-construct.spec | 0000003223 3.15 KB | |
split_debug.patch | 0000001052 1.03 KB |
Revision 19 (latest revision is 20)
- update to 2.10.70: * all exceptions docstrings were defined. * stream_size stream_iseof now raise properly StreamError * Keep track of offsets within substreams where possible * Fix missing objects in Struct._emitbuild's context * Fix ExprMixin for and/or being compiled as logical instead of bitwise * Issue 1046: Docs updated accordingly. * enum34 module renamed to enum, etc. * Use builtin dict instead of collections.OrderedDict for class Contain… * Implement __getstate__ and __setstate__ on Container * documentation updates * no changelog available - Skip NumPy tests on pyhton36 flavor. Due to NEP29, python36-numpy Necessary due change in pytest macro gh#openSUSE/python-rpm-macros#48
Comments 0