vote up 3 vote down star

In Python, I'm constantly using the following sequence to get an integer value from a byte buffer (in python this is a str).

I'm getting the buffer from the struct.unpack() routine. When I unpack a 'char' using

byte_buffer, = struct.unpack('c', raw_buffer)
int_value = int( byte_buffer.encode('hex'), 16 )

Is there a better way?

flag
Can you tell us why you need the byte buffer as a python integer? – Unknown May 28 at 1:48
I'm typically pulling the value out of binary packet stream. – Noah Campbell May 28 at 1:51
So is the integer value bounded or unbounded? – Unknown May 28 at 1:56
Bounded to 1 byte – Noah Campbell May 28 at 2:13

3 Answers

vote up 2 vote down check

Bounded to 1 byte – Noah Campbell 18 mins ago

The best way to do this then is to instantiate a struct unpacker.

from struct import Struct

unpacker = Struct("b")
unpacker.unpack("z")[0]

Note that you can change "b" to "B" if you want an unsigned byte. Also, endian format is not needed.

For anyone else who wants to know a method for unbounded integers, create a question, and tell me in the comments.

link|flag
Ahh...using the b vs. B returns an integer. (Flips to the python docs and realizes he needed to keep reading...) – Noah Campbell May 28 at 4:13
vote up 5 vote down

The struct module is good at unpacking binary data.

int_value = struct.unpack('>I', byte_buffer)[0]
link|flag
Noah didn't specify that the number will always be from 0 to unsigned int. – Unknown May 28 at 1:46
@Unknown: The code Noah pasted seems to do exactly that. – nosklo May 28 at 2:28
@nosklo, no, the code he pasted accepts unbounded integers. Try int( ("a"*500).encode('hex'), 16 ) for proof. – Unknown May 28 at 2:37
vote up 1 vote down

If we're talking about getting the integer value of a byte, then you want this:

ord(byte_buffer)

Can't understand why it isn't already suggested.

link|flag
Perhaps because struct is more likely to be the correct answer for other parts of his problem, if reading various pieces of data from a byte stream. – Kylotan May 29 at 11:35
I was going to suggest this, but the asker didn't specify whether or not it would be signed or unsigned, so struct is the best option. – Unknown May 29 at 20:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.