데이터 압축 및 보관
*******************

이 장에서 설명하는 모듈은 zlib, gzip, bzip2 및 lzma 알고리즘을 사용한
데이터 압축과 ZIP- 및 tar- 형식 저장소 생성을 지원합니다. "shutil" 모
듈에서 제공하는 Archiving operations도 참조하십시오.

* "zlib" --- Compression compatible with **gzip**

* "gzip" --- **gzip** 파일 지원

  * 사용 예

* "bz2" --- **bzip2** 압축 지원

  * 파일 압축(해제)

  * 증분 압축(해제)

  * 일괄 압축(해제)

  * 사용 예

* "lzma" --- Compression using the LZMA algorithm

  * Reading and writing compressed files

  * Compressing and decompressing data in memory

  * Miscellaneous

  * Specifying custom filter chains

  * Examples

* "zipfile" --- Work with ZIP archives

  * ZipFile Objects

  * PyZipFile Objects

  * ZipInfo Objects

  * Command-Line Interface

    * Command-line options

* "tarfile" --- Read and write tar archive files

  * TarFile Objects

  * TarInfo Objects

  * Command-Line Interface

    * Command-line options

  * Examples

  * Supported tar formats

  * Unicode issues
