How to decompress text in Python that has been compressed with gzip?

安稳与你 提交于 2021-02-10 23:18:23

问题


How can you decompress a string of text in Python 3, that has been compressed with gzip and converted to base 64?

For example, the text:

EgAAAB+LCAAAAAAABAALycgsVgCi4vzcVAWFktSKEgC9n1/fEgAAAA==

Should convert to:

This is some text

The following C# code successfully does this:

var gzBuffer = Convert.FromBase64String(compressedText);

using (var ms = new MemoryStream()) {
    int msgLength = BitConverter.ToInt32(gzBuffer, 0);
    ms.Write(gzBuffer, 4, gzBuffer.Length - 4);

    var buffer = new byte[msgLength];

    ms.Position = 0;
    using (var zip = new GZipStream(ms, CompressionMode.Decompress)) {
        zip.Read(buffer, 0, buffer.Length);
    }

    return Encoding.UTF8.GetString(buffer);
}

回答1:


You can use the gzip and base64 modules.

>>> import gzip
>>> import base64

>>> s = 'EgAAAB+LCAAAAAAABAALycgsVgCi4vzcVAWFktSKEgC9n1/fEgAAAA=='
>>> gz = base64.b64decode(s)
>>> gz
b'\x12\x00\x00\x00\x1f\x8b\x08\x00\x00\x00\x00\x00\x04\x00\x0b\xc9\xc8,V\x00\xa2\xe2\xfc\xdcT\x05\x85\x92\xd4\x8a\x12\x00\xbd\x9f_\xdf\x12\x00\x00\x00'

# If you need the length
import struct
# Unpacks binary encoded 4 byte integer (assume native byte order)
# Only select first four bytes with [:4] slice
>>> struct.unpack('i', gz[:4])[0]
18

# Skip length value with [4:] slice
>>> gzip.decompress(gz[4:]).decode('UTF8')
'This is some  text'


来源:https://stackoverflow.com/questions/52478874/how-to-decompress-text-in-python-that-has-been-compressed-with-gzip

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!