StreamRecoder instances provide a frontend - backend view of encoding data.
They use the complete set of APIs returned by the codecs.lookup() function to implement their task.
Data written to the stream is first decoded into an intermediate format (which is dependent on the given codec combination) and then written to the stream using an instance of the provided Writer class.
In the other direction, data is read from the stream using a Reader instance and then return encoded data to the caller.
There are no base classes.
There are no implemented interfaces.
next()
Return the next decoded line from the input stream.
read(size=-1)
readline(size=None)
readlines(sizehint=None)
reset()
write(data)
writelines(list)
There are no known subclasses.