在 python3.6 中从“_io.BytesIO”转换为类似字节的对象?
Posted
技术标签:
【中文标题】在 python3.6 中从“_io.BytesIO”转换为类似字节的对象?【英文标题】:Convert from '_io.BytesIO' to a bytes-like object in python3.6? 【发布时间】:2019-06-05 20:38:57 【问题描述】:如果使用 gzip、compress 或 deflate 压缩正文或 HTTP 响应,我正在使用此函数解压缩。
def uncompress_body(self, compression_type, body):
if compression_type == 'gzip' or compression_type == 'compress':
return zlib.decompress(body)
elif compression_type == 'deflate':
compressor = zlib.compressobj(9, zlib.DEFLATED, -zlib.MAX_WBITS)
compressed = compressor.compress(body)
compressed += compressor.flush()
return base64.b64encode(compressed)
return body
然而python抛出了这个错误信息。
TypeError: a bytes-like object is required, not '_io.BytesIO'
在这一行:
return zlib.decompress(body)
本质上,我如何从 '_io.BytesIO' 转换为类似字节的对象?
【问题讨论】:
【参考方案1】:这是一个类似文件的对象。阅读它们:
>>> b = io.BytesIO(b'hello')
>>> b.read()
b'hello'
如果来自body
的数据太大而无法读入内存,您需要重构代码并使用zlib.decompressobj
而不是zlib.decompress
。
【讨论】:
当您考虑基本解决方案时:D【参考方案2】:如果您先写入对象,请确保在读取之前重置流:
>>> b = io.BytesIO()
>>> image = PIL.Image.open(path_to_image)
>>> image.save(b, format='PNG')
>>> b.seek(0)
>>> b.read()
b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x06\xcf\x00\x00\x03W\x08\x02\x00'
或者直接用getvalue
获取数据
>>> b.getvalue()
b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x06\xcf\x00\x00\x03W\x08\x02\x00'
【讨论】:
以上是关于在 python3.6 中从“_io.BytesIO”转换为类似字节的对象?的主要内容,如果未能解决你的问题,请参考以下文章