Staging
v0.5.1
https://github.com/python/cpython
Revision e09359112e250268eca209355abeb17abf822486 authored by Ned Deily on 08 July 2019, 18:03:50 UTC, committed by Ned Deily on 08 July 2019, 18:03:50 UTC
1 parent f2cbf41
Raw File
Tip revision: e09359112e250268eca209355abeb17abf822486 authored by Ned Deily on 08 July 2019, 18:03:50 UTC
3.7.4 final
Tip revision: e093591
binary.rst
.. _binaryservices:

********************
Binary Data Services
********************

The modules described in this chapter provide some basic services operations
for manipulation of binary data. Other operations on binary data, specifically
in relation to file formats and network protocols, are described in the
relevant sections.

Some libraries described under :ref:`textservices` also work with either
ASCII-compatible binary formats (for example, :mod:`re`) or all binary data
(for example, :mod:`difflib`).

In addition, see the documentation for Python's built-in binary data types in
:ref:`binaryseq`.

.. toctree::

   struct.rst
   codecs.rst

back to top