Class
codecs.StreamRecoder

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.

Base classes

There are no base classes.

Implemented Interfaces

There are no implemented interfaces.

Attributes/Properties

Methods

Known Subclasses

There are no known subclasses.