blob: c9284949af49726c0c66d2c64b5b16431c5e67cb [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. _archiving:
2
3******************************
4Data Compression and Archiving
5******************************
6
7The modules described in this chapter support data compression with the zlib,
Nadeem Vawda3ff069e2011-11-30 00:25:06 +02008gzip, bzip2 and lzma algorithms, and the creation of ZIP- and tar-format
Éric Araujocd0d9512012-02-05 13:49:59 +01009archives. See also :ref:`archiving-operations` provided by the :mod:`shutil`
10module.
Georg Brandl116aa622007-08-15 14:28:22 +000011
12
13.. toctree::
14
15 zlib.rst
16 gzip.rst
17 bz2.rst
Nadeem Vawda3ff069e2011-11-30 00:25:06 +020018 lzma.rst
Georg Brandl116aa622007-08-15 14:28:22 +000019 zipfile.rst
20 tarfile.rst