I am looking to try and break this incoming byte string into the small number of 10 byte parts as I can for resending. I have looked everywhere but I believe that the answer is to simple and I have simply overlooked it.
Here is an example of what I am printing to the terminal b'\xd3\x00\x16E\xd0\x00q\\x1d\xf6?\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0ff\r'
I am looking to do this in python . the size of these msgs will vary so I need to make it the smallest amount of parts possible at any time in 10 byte pieces.
Thanks in advance
TG