I have a delphi programm which send record:
type
TMyNetworkPckg = record
za: byte;
zb: char;
zc: array[0..31] of single;
end;
I receive that data in python. I use udp socks. By default recived data is string. How can i create delphi like record, structure, class, etc. And convert recived data into it?
You can use the Python library
struct: