etlplus.file.msgpack

etlplus.file.msgpack module.

Helpers for reading/writing MessagePack (MSGPACK) files.

Notes

  • A MsgPack file is a binary serialization format that is more compact than

    JSON.

  • Common cases:
    • Efficient data storage and transmission.

    • Inter-process communication.

    • Data serialization in performance-critical applications.

  • Rule of thumb:
    • If the file follows the MsgPack specification, use this module for

      reading and writing.

Classes

MsgpackFile()

Handler implementation for MessagePack files.