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)しないといけないのは面倒だなぁ。。
参考:
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)しないといけないのは面倒だなぁ。。
参考: