我在使用 python 的内置库时遇到了一些问题gzip
。浏览了几乎所有其他有关它的堆栈问题,但似乎没有一个有效。
我的问题是,当我尝试减压时,我得到了IOError
我越来越:
Traceback (most recent call last):
File "mymodule.py", line 61, in
return gz.read()
File "/usr/lib/python2.7/gzip.py", line 245,
readself._read(readsize)
File "/usr/lib/python2.7/gzip.py", line 287, in
_readself._read_gzip_header()
File "/usr/lib/python2.7/gzip.py", line 181, in
_read_gzip_header
raise IOError, 'Not a gzipped file'IOError: Not a gzipped file
这是我通过网络发送它的代码,我为什么这样做可能没有意义,但它通常处于一个while循环和内存效率高,我只是简化了它。
buffer = cStringIO.StringIO(output) #output is from a subprocess call
small_buffer = cStringIO.StringIO()
small_string = buffer.read() #need a string to write to buffer
gzip_obj = gzip.GzipFile(fileobj=small_buffer,compresslevel=6, mode='wb')
gzip_obj.write(small_string)
compressed_str = small_buffer.getvalue()
blowfish = Blowfish.new('abcd', Blowfish.MODE_ECB)
remainder = '|'*(8 - (len(compressed_str) % 8))
compressed_str += remainder
encrypted = blowfish.encrypt(compressed_str)
#i send it over smb, then retrieve it later
然后这是检索它的代码:
#buffer is a cStringIO object filled with data from retrieval
decrypter = Blowfish.new('abcd', Blowfish.MODE_ECB)
value = buffer.getvalue()
decrypted = decrypter.decrypt(value)
buff = cStringIO.StringIO(decrypted)
buff.seek(0)
gz = gzip.GzipFile(fileobj=buff)
return gz.read()
这就是问题所在
return gz.read()