Python zlib Functions
EditRocket provides the following information on zlib functions in the Python source code builder.
adler32(string[, value]) - Computes a Adler-32 checksum of string.
compress(string[, level]) - Compresses the data in string, returning a string contained compressed data.
compressobj([level]) - Returns a compression object, to be used for compressing data streams that won't fit into memory at once.
crc32(string[, value]) - Computes a CRC (Cyclic Redundancy Check) checksum of string.
decompress(string[, wbits[, bufsize]]) - Decompresses the data in string, returning a string containing the uncompressed data.
decompressobj([wbits]) - Returns a decompression object, to be used for decompressing data streams that won't fit into memory at once.