You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
721 B
25 lines
721 B
:mod:`struct` -- pack and unpack primitive data types
|
|
=====================================================
|
|
|
|
.. module:: struct
|
|
:synopsis: pack and unpack primitive data types
|
|
|
|
See `Python struct <https://docs.python.org/3/library/struct.html>`_ for more
|
|
information.
|
|
|
|
Functions
|
|
---------
|
|
|
|
.. function:: calcsize(fmt)
|
|
|
|
Return the number of bytes needed to store the given ``fmt``.
|
|
|
|
.. function:: pack(fmt, v1, v2, ...)
|
|
|
|
Pack the values ``v1``, ``v2``, ... according to the format string ``fmt``.
|
|
The return value is a bytes object encoding the values.
|
|
|
|
.. function:: unpack(fmt, data)
|
|
|
|
Unpack from the ``data`` according to the format string ``fmt``.
|
|
The return value is a tuple of the unpacked values.
|
|
|