codecs.iterdecode(iterator, encoding, errors='strict', **kwargs) Uses an incremental decoder to iteratively decode the input
codecs.open(filename, mode='r', encoding=None, errors='strict', buffering=1) Open an encoded file using the given mode
class codecs.StreamRecoder(stream, encode, decode, Reader, Writer, errors) Creates a StreamRecoder instance which
format The format string used to construct this Struct object.
incrementalencoder incrementaldecoder Incremental encoder and decoder classes or factory functions. These have to
codecs.iterencode(iterator, encoding, errors='strict', **kwargs) Uses an incremental encoder to iteratively encode the input
encode(object[, final]) Encodes object (taking the current state of the encoder into account) and returns the resulting
readlines([sizehint[, keepends]]) Read all lines available on the input stream and return them as a list of lines.
class codecs.CodecInfo(encode, decode, streamreader=None, streamwriter=None, incrementalencoder=None, incrementaldecoder=None, name=None)
codecs.getwriter(encoding) Look up the codec for the given encoding and return its StreamWriter class or factory
Page 6 of 8