python-cstruct
python-cstruct copied to clipboard
C-style structs for Python
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; }
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...