S.unpack_from(buffer[, offset]) -> (v1, v2, ...)
Return tuple containing values unpacked according to this Struct’s format. Unlike unpack, unpack_from can unpack values from any object supporting the buffer API, not just str. Requires len(buffer[offset:]) >= self.size. See struct.__doc__ for more on format strings.