Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
25 lines (16 loc) · 721 Bytes

File metadata and controls

25 lines (16 loc) · 721 Bytes
Copy raw file
Download raw file
Outline
Edit and raw actions

:mod:`struct` -- pack and unpack primitive data types

.. module:: struct
   :synopsis: pack and unpack primitive data types

See Python struct 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.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.