zlib
 

The functions in this module allow compression and decompression using the zlib library, which is based on GNU zip.  

adler32(string) -- Compute an Adler-32 checksum.
adler32(string, start) -- Compute an Adler-32 checksum using a given starting value.
compress(string) -- Compress a string.
compress(string, level) -- Compress a string with the given level of compression (1--9).
compressobj([level]) -- Return a compressor object.
crc32(string) -- Compute a CRC-32 checksum.
crc32(string, start) -- Compute a CRC-32 checksum using a given starting value.
decompress(string,[wbites],[bufsize]) -- Decompresses a compressed string.
decompressobj([wbits]) -- Return a decompressor object (wbits=window buffer size).

Compressor objects support compress() and flush() methods; decompressor 
objects support decompress() and flush().


 Classes
                                                                                                                                                                                                                               
exceptions.Exception
error


 class error(exceptions.Exception)
           no doc string
                                                                                                                                                                                                                     


 Functions
                                                                                                                                                                                                                               
adler32(no arg info)
adler32(string) -- Compute an Adler-32 checksum of string, using a default starting value, and returning an integer value.
adler32(string, value) -- Compute an Adler-32 checksum of string, using the starting value provided, and returning an integer value
compress(no arg info)
compress(string) -- Compress string using the default compression level, returning a string containing compressed data.
compress(string, level) -- Compress string, using the chosen compression level (from 1 to 9).  Return a string containing the compressed data.
compressobj(no arg info)
compressobj() -- Return a compressor object.
compressobj(level) -- Return a compressor object, using the given compression level.
crc32(no arg info)
crc32(string) -- Compute a CRC-32 checksum of string, using a default starting value, and returning an integer value.
crc32(string, value) -- Compute a CRC-32 checksum of string, using the starting value provided, and returning an integer value.
decompress(no arg info)
decompress(string) -- Decompress the data in string, returning a string containing the decompressed data.
decompress(string, wbits) -- Decompress the data in string with a window buffer size of wbits.
decompress(string, wbits, bufsize) -- Decompress the data in string with a window buffer size of wbits and an initial output buffer size of bufsize.
decompressobj(no arg info)
decompressobj() -- Return a decompressor object.
decompressobj(wbits) -- Return a decompressor object, setting the window buffer size to wbits.