Python3 TypeError: initial_value must be str or None, not bytes

response.read() returns an instance of bytes while StringIO is an in-memory stream for text only. Use BytesIO instead.

The StringIO and cStringIO modules are gone. Instead, import the io module and use io.StringIO or io.BytesIO for text and data respectively.

原文地址:https://www.cnblogs.com/vercont/p/10210178.html