I've found the following thread How to pack a UUID into a struct in Python?, but it didn't solve my problem:
I have for example the following uuid:
from uuid import UUID
b = UUID("3f687986-e905-11e0-b641-f04da24096ca")
I need to pack it, and I need to get the following byte code from it: '\x33\x66\x36\x38\x37\x39\x38\x36\x2d\x65\x39\x30\x35\x2d\x31\x31\x65\x30\x2d\x62\x36\x34\x31\x2d\x66\x30\x34\x64\x61\x32\x34\x30\x39\x36\x63\x61'
btw I got this output from:
''.join(['\\' + hex(ord(i))[1:] for i in str(b)])
I couldn't find a way to do it.
Is it possible? How?
Thanks!
str(b)(orstr(b).encode()in Python3.x) already is the byte sequence you need, so there's nothing to do. What do you want to achieve? – Sven Marnach Oct 31 '11 at 12:25self.stream += str(b)(or the above variant in Python 3.x). – Sven Marnach Oct 31 '11 at 13:40