construct icon indicating copy to clipboard operation
construct copied to clipboard

Python binary parsing library

Results 11 construct issues
Sort by recently updated
recently updated
newest added

Hello, engineer,I want to see the historical version of the document, where can I get it?

``` pi@raspberrypi:~/gr-satellites/build/construct $ make upload ./setup.py sdist upload running sdist running egg_info writing requirements to construct.egg-info/requires.txt writing construct.egg-info/PKG-INFO writing top-level names to construct.egg-info/top_level.txt writing dependency_links to construct.egg-info/dependency_links.txt reading manifest file...

A bitmap file has to be opened in "rb" mode in python 3, but then b'BM' != 'BM'. Hence the parse function raises an error. This fix should do the...

This is more like a question rather an issue. I'd expect MEtaField's related length fiekd to be autopopulated on building a structure, however this does not happen: ``` python >>>...

Hi, I've tried to post a message to http://construct.wikispaces.com/message/list/home but I need to join the wiki and it's invite-only. Wouldn't be easier to move everything to github or use google...

This seems to be an issue with CString being an adapted RepeatUntil, which always throws an error for sizeof calls. ``` >>> from construct import * >>> str = CString("a_string")...

When building a Struct which contains an Anchor, not providing the anchor's label as a key in the Container instance yields an AttributeError. ``` python #!/usr/bin/python2 from construct import *...

After a quick check, it appears that construct works to some degree after running the 2to3 tool... Cstring and Repeater objects can be created, can parse, and can build. However,...

This parses EXIF and JFIF files. this is my first construct, and while making it I noticed I was missing a couple things: 1) a PascalString that includes the size...