AlbertoAltozano

Results 1 comments of AlbertoAltozano

After looking arround a bit, I found out this is the function you should use ```python import struct def get_int(data): return struct.unpack('>I', data)[0] ``` It took me some trial and...