import struct def write_compact_size(n): if n < 253: return struct.pack('B', n) elif n <= 0xFFFF: return struct.pack('B', 253) + struct.pack('