Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. _archiving: |
| 2 | |
| 3 | ****************************** |
| 4 | Data Compression and Archiving |
| 5 | ****************************** |
| 6 | |
| 7 | The modules described in this chapter support data compression with the zlib, |
| 8 | gzip, and bzip2 algorithms, and the creation of ZIP- and tar-format archives. |
Éric Araujo | f2fbb9c | 2012-01-16 16:55:55 +0100 | [diff] [blame] | 9 | See also :ref:`archiving-operations` provided by the :mod:`shutil` module. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 10 | |
| 11 | |
| 12 | .. toctree:: |
| 13 | |
| 14 | zlib.rst |
| 15 | gzip.rst |
| 16 | bz2.rst |
| 17 | zipfile.rst |
| 18 | tarfile.rst |