Summary
The gzip module in Python provides functions to open, compress and decompress gzip files.
1
The GzipFile class can be used to read and write gzip-format files, automatically compressing or decompressing the data.
1
The open() function can be used to open a gzip file in binary mode.
2
According to