import gzip import struct from .. import TLObject, TLRequest class GzipPacked(TLObject): CONSTRUCTOR_ID = 0x3072cfa1 def __init__(self, data): self.data = data @staticmethod def gzip_if_smaller(data): """Calls bytes(request), and based on a certain threshold, optionally gzips the resulting data. If the gzipped data is smaller than the original byte array, this is returned instead. Note that this only applies to content related requests. """ # TODO Only content-related requests should be gzipped if len(data) > 512: gzipped = bytes(GzipPacked(data)) return gzipped if len(gzipped) < len(data) else data else: return data def __bytes__(self): return struct.pack('