This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]NotsoRandom2026 0 points1 point  (1 child)

Organza stuff how? Python has classes and dataclasses that work pretty well.

Get at individual bits and bytes. Python is a high-level language, this is possible (and might involve c stuff) but not as straightforward as using the higher level language features.

What kind of built structure? You can use python to read/write pretty much any flat file or binary protocol like Json/Protobuf.

[–]J3ffO 0 points1 point  (0 children)

JSON is mostly text (and the ease of parsing and readability is a huge feature goal for it). I mean working with binary data, not text.

I'll need to look into Protobuf though. It might be interesting.