如何在Python 3中将文本流编码为字节流?

时间:2018-07-29 22:36:29

标签: python python-3.x io character-encoding stream

将字节流解码为文本流很容易:

import io
f = io.TextIOWrapper(io.BytesIO(b'Test\nTest\n'), 'utf-8')
f.readline()

在此示例中,io.BytesIO(b'Test\nTest\n')是字节流,f是文本流。

我想做相反的事情。给定文本流或类似文件的对象,我想将其编码为字节流或类似文件的对象 ,而无需处理整个流

这是我到目前为止尝试过的:

import io, codecs

f = codecs.getreader('utf-8')(io.StringIO('Test\nTest\n'))
f.readline()
# TypeError: can't concat str to bytes

f = codecs.EncodedFile(io.StringIO('Test\nTest\n'), 'utf-8')
f.readline()
# TypeError: can't concat str to bytes

f = codecs.StreamRecoder(io.StringIO('Test\nTest\n'), None, None,
                         codecs.getreader('utf-8'), codecs.getwriter('utf-8'))
# TypeError: can't concat str to bytes

f = codecs.encode(io.StringIO('Test\nTest\n'), 'utf-8')
# TypeError: utf_8_encode() argument 1 must be str, not _io.StringIO

f = io.TextIOWrapper(io.StringIO('Test\nTest\n'), 'utf-8')
f.readline()
# TypeError: underlying read() should have returned a bytes-like object, not 'str'

f = codecs.iterencode(io.StringIO('Test\nTest\n'), 'utf-8')
next(f)
# This works, but it's an iterator instead of a file-like object or stream.

f = io.BytesIO(io.StringIO('Test\nTest\n').getvalue().encode('utf-8'))
f.readline()
# This works, but I'm reading the whole stream before converting it.

我正在使用Python 3.7

1 个答案:

答案 0 :(得分:2)

您可以轻松地自己编写此代码;您只需要决定如何进行缓冲即可。

例如:

class BytesIOWrapper(io.RawIOBase):
    def __init__(self, file, encoding='utf-8', errors='strict'):
        self.file, self.encoding, self.errors = file, encoding, errors
        self.buf = b''
    def readinto(self, buf):
        if not self.buf:
            self.buf = self.file.read(4096).encode(self.encoding, self.errors)
            if not self.buf:
                return 0
        length = min(len(buf), len(self.buf))
        buf[:length] = self.buf[:length]
        self.buf = self.buf[length:]
        return length
    def readable():
        return True

我认为这正是您要的。

>>> f = BytesIOWrapper(io.StringIO("Test\nTest\n"))
>>> f.readline()
b'Test\n'
>>> f.readline()
b'Test\n'
>>> f.readline()
b''

如果您想变得更聪明,则可能希望包装codecs.iterencode而不是一次缓冲4K。或者,由于我们使用的是缓冲区,因此您可能想要创建BufferedIOBase而不是RawIOBase。另外,一个名为BytesIOWrapper的类可能应该处理write,但这很容易。困难的部分是实现seek / tell,因为您不能在TextIOBase内任意寻找;寻求开始和结束非常容易;另一方面,要找到已知的先前位置很困难(除非您依靠TextIOBase.tell返回一个字节位置,这是不保证的,并且TextIOWrapper确实如此,{{1} }不会……)。

无论如何,我认为这是即使如何编写最复杂的StringIO类的最简单的演示。