日々精進

新しく学んだことを書き留めていきます

io.BytesIOをstrに変換する

self.contentがio.BytesIOオブジェクトとすると以下のようなコードで変換出来る。

    def get_content_str(self) -> str:
        content_str: str = self.content.read().decode('UTF-8')
        self.content.seek(0)
        return content_str

readするたびにseek(0)しないといけないのは面倒だなぁ。。

参考:

stackoverflow.com