gzip.compress(data, compresslevel=9)
Compress the data, returning a bytes
object containing the compressed data. compresslevel has the same meaning as in the GzipFile
constructor above.
New in version 3.2.
gzip.compress(data, compresslevel=9)
Compress the data, returning a bytes
object containing the compressed data. compresslevel has the same meaning as in the GzipFile
constructor above.
New in version 3.2.
Please login to continue.