Tagged Questions
9
votes
1answer
344 views
What's the most Pythonic way of determining endianness?
I'm trying to find the best way of working out whether the machine my code is running on is big-endian or little-endian. I have a solution that works (although I haven't tested it on a big-endian ...
0
votes
1answer
149 views
Unpacking big-endian encoded port number
I'm trying to convert a big-endian 2 byte string into a numeric port number. I've already got some code, but I have no idea if it's right:
from struct import unpack
def unpack_port(big_endian-port):
...