python-cstruct icon indicating copy to clipboard operation
python-cstruct copied to clipboard

C-style structs for Python

Results 3 python-cstruct issues
Sort by recently updated
recently updated
newest added

Hi, Just a thing for the wishlist: I would like to be able to parse binary data into a cstruct, and then convert it to e.g. a json element. Currently...

Hi, is this library supports bitfields in structs like below? eg. struct Test { int a: 2; int b: 1; int reserved: 29; int c; }

enhancement

Python 3.8 deprecated some AST nodes, which got removed in Python 3.14. The [Python 3.14 releaes notes for the ast module](https://docs.python.org/3.14/whatsnew/3.14.html#id9) state: > - Remove the following classes, which have...