codecs.EncodedFile()
  • References/Python/Python/Binary Data

codecs.EncodedFile(file, data_encoding, file_encoding=None, errors='strict') Return a StreamRecoder instance, a

2025-01-10 15:47:30
codecs.CodecInfo.decode
  • References/Python/Python/Binary Data

decode The stateless encoding and decoding functions. These must be functions or methods which have the same interface as the

2025-01-10 15:47:30
codecs.IncrementalEncoder.reset()
  • References/Python/Python/Binary Data

reset() Reset the encoder to the initial state. The output is discarded: call .encode(object, final=True), passing

2025-01-10 15:47:30
codecs.lookup_error()
  • References/Python/Python/Binary Data

codecs.lookup_error(name) Return the error handler previously registered under the name name. Raises

2025-01-10 15:47:30
codecs.StreamWriter.write()
  • References/Python/Python/Binary Data

write(object) Writes the object’s contents encoded to the stream.

2025-01-10 15:47:30
codecs.backslashreplace_errors()
  • References/Python/Python/Binary Data

codecs.backslashreplace_errors(exception) Implements the 'backslashreplace' error handling (for

2025-01-10 15:47:30
codecs.getreader()
  • References/Python/Python/Binary Data

codecs.getreader(encoding) Look up the codec for the given encoding and return its StreamReader class or factory

2025-01-10 15:47:30
codecs.IncrementalEncoder.setstate()
  • References/Python/Python/Binary Data

IncrementalEncoder.setstate(state) Set the state of the encoder to state. state must be an encoder state returned

2025-01-10 15:47:30
codecs.CodecInfo.streamwriter
  • References/Python/Python/Binary Data

streamwriter streamreader Stream writer and reader classes or factory functions. These have to provide the interface

2025-01-10 15:47:30
codecs.IncrementalDecoder.decode()
  • References/Python/Python/Binary Data

decode(object[, final]) Decodes object (taking the current state of the decoder into account) and returns the resulting

2025-01-10 15:47:30