struct.Struct.iter_unpack()
  • References/Python/Python/Binary Data

iter_unpack(buffer) Identical to the iter_unpack() function, using the compiled format. The buffer’s size in bytes

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

codecs.xmlcharrefreplace_errors(exception) Implements the 'xmlcharrefreplace' error handling (for encoding with

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

struct.pack(fmt, v1, v2, ...) Return a bytes object containing the values v1, v2, ... packed according to

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

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

2025-01-10 15:47:30
struct.Struct.size
  • References/Python/Python/Binary Data

size The calculated size of the struct (and hence of the bytes object produced by the pack() method) corresponding

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

codecs.decode(obj, encoding='utf-8', errors='strict') Decodes obj using the codec registered for encoding

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

codecs.register(search_function) Register a codec search function. Search functions are expected to take one argument, being

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

reset() Resets the codec buffers used for keeping state. Note that no stream repositioning should

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

codecs.getencoder(encoding) Look up the codec for the given encoding and return its encoder function. Raises

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

codecs.encode(obj, encoding='utf-8', errors='strict') Encodes obj using the codec registered for encoding

2025-01-10 15:47:30