Staging
v0.5.1
https://github.com/python/cpython
Revision 439c93d51f45c50541fc755b597725168ecd939a authored by Łukasz Langa on 11 August 2020, 17:14:36 UTC, committed by Łukasz Langa on 11 August 2020, 18:58:17 UTC
1 parent 5de00f6
Raw File
Tip revision: 439c93d51f45c50541fc755b597725168ecd939a authored by Łukasz Langa on 11 August 2020, 17:14:36 UTC
Python 3.9.0rc1
Tip revision: 439c93d
archiving.rst
.. _archiving:

******************************
Data Compression and Archiving
******************************

The modules described in this chapter support data compression with the zlib,
gzip, bzip2 and lzma algorithms, and the creation of ZIP- and tar-format
archives.  See also :ref:`archiving-operations` provided by the :mod:`shutil`
module.


.. toctree::

   zlib.rst
   gzip.rst
   bz2.rst
   lzma.rst
   zipfile.rst
   tarfile.rst
back to top