miurahr / py7zr

7zip in python3 with ZStandard, PPMd, LZMA2, LZMA1, Delta, BCJ, BZip2, and Deflate compressions, and AES encryption.
https://pypi.org/project/py7zr/
GNU Lesser General Public License v2.1
463 stars 74 forks source link
7-zip 7zip aes bcj bzip2 cli compress decompression decryption deflate encryption library lzma lzma2 ppmd python zstandard

====================================== |logo| py7zr -- a 7z library on python

.. |logo| image:: logo.svg :width: 80pt :height: 80pt :target: https://pypi.org/project/py7zr

.. image:: https://readthedocs.org/projects/py7zr/badge/?version=latest :target: https://py7zr.readthedocs.io/en/latest/?badge=latest

.. image:: https://badge.fury.io/py/py7zr.svg :target: https://badge.fury.io/py/py7zr

.. image:: https://img.shields.io/pypi/dd/py7zr :target: https://pypi.org/project/py7zr

.. image:: https://img.shields.io/conda/vn/conda-forge/py7zr :target: https://anaconda.org/conda-forge/py7zr

.. image:: https://github.com/miurahr/py7zr/workflows/Run%20Tox%20tests/badge.svg :target: https://github.com/miurahr/py7zr/actions

.. image:: https://dev.azure.com/miurahr/github/_apis/build/status/miurahr.py7zr?branchName=master :target: https://dev.azure.com/miurahr/github/_build/latest?definitionId=14&branchName=master

.. image:: https://coveralls.io/repos/github/miurahr/py7zr/badge.svg?branch=master :target: https://coveralls.io/github/miurahr/py7zr?branch=master

.. image:: https://img.shields.io/pypi/l/py7zr :target: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html

.. image:: https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg :target: https://github.com/vshymanskyy/StandWithUkraine/blob/main/docs/README.md

.. image:: https://snyk.io/advisor/python/py7zr/badge.svg :target: https://snyk.io/advisor/python/py7zr :alt: py7zr

py7zr is a library and utility to support 7zip archive compression, decompression, encryption and decryption written by Python programming language.

Discussion Forum

You are welcome to join discussions on project forum/builtin-board at https://github.com/miurahr/py7zr/discussions

You can see announcements of new releases, questions and answers, and new feature ideas. When you doubt for usage of py7zr library with unclear manuals, please feel easy to raise question on forum.

Compression algorithms

py7zr supports algorithms and filters which lzma module and liblzma support, and supports BZip2 and Deflate that are implemented in python core libraries, It also supports ZStandard, Brotli and PPMd with third party libraries.

py7zr is also able to encrypt and decrypt data using 3rd party encryption library.

Supported algorithms

.. note::

Not supported algorithms

Install

You can install py7zr as usual other libraries using pip.

.. code-block:: shell

$ pip install py7zr

OR, alternatively using conda:

.. code-block:: shell

$ conda install -c conda-forge py7zr

Documents

User manuals

Developer guide

.. _User Guide: https://py7zr.readthedocs.io/en/latest/user_guide.html

.. _API Guide : https://py7zr.readthedocs.io/en/latest/api.html

.. _Manual : https://py7zr.readthedocs.io/en/stable/

.. _Contribution guidelines(html) : https://py7zr.readthedocs.io/en/latest/contribution.html

.. _Contribution guidelines : docs/contribution.rst

.. _Code of conduct : docs/CODE_OF_CONDUCT.rst

.. _Code of conduct(html) : https://py7zr.readthedocs.io/en/latest/CODE_OF_CONDUCT.html

.. _7z file specification : https://py7zr.readthedocs.io/en/latest/archive_format.html

CLI Usage

You can run command script py7zr like as follows;

.. code-block:: shell

$ py7zr l test.7z

.. code-block:: shell

$ py7zr x test.7z

.. code-block:: shell

$ py7zr x -P test.7z
  password?: ****

.. code-block:: shell

$ py7zr c target.7z test_dir

.. code-block:: shell

$ py7zr c -v 500k target.7z test_dir

.. code-block:: shell

$ py7zr t test.7z

.. code-block:: shell

$ py7zr a test.7z test_dir

.. code-block:: shell

$ py7zr i

.. code-block:: shell

$ py7zr --version

SevenZipFile Class Usage

py7zr is a library which can use in your python application.

Decompression/Decryption

Here is a code snippet how to decompress some file in your application.

.. code-block:: python

import py7zr

archive = py7zr.SevenZipFile('sample.7z', mode='r')
archive.extractall(path="/tmp")
archive.close()

You can also use 'with' block because py7zr provide context manager(v0.6 and later).

.. code-block:: python

import py7zr

with py7zr.SevenZipFile('sample.7z', mode='r') as z:
    z.extractall()

with py7zr.SevenZipFile('target.7z', 'w') as z:
    z.writeall('./base_dir')

py7zr also supports extraction of single or selected files by 'extract(targets=['file path'])'. Note: if you specify only a file but not a parent directory, it will fail.

.. code-block:: python

import py7zr
import re

filter_pattern = re.compile(r'<your/target/file_and_directories/regex/expression>')
with py7zr.SevenZipFile('archive.7z', 'r') as archive:
    allfiles = archive.getnames()
    selective_files = [f for f in allfiles if filter_pattern.match(f)]
    archive.extract(targets=selective_files)

py7zr support an extraction of password protected archive.(v0.6 and later)

.. code-block:: python

import py7zr

with py7zr.SevenZipFile('encrypted.7z', mode='r', password='secret') as z:
    z.extractall()

Compression/Encryption

Here is a code snippet how to produce archive.

.. code-block:: python

import py7zr

with py7zr.SevenZipFile('target.7z', 'w') as archive:
    archive.writeall('/path/to/base_dir', 'base')

To create encrypted archive, please pass a password.

.. code-block:: python

import py7zr

with py7zr.SevenZipFile('target.7z', 'w', password='secret') as archive:
    archive.writeall('/path/to/base_dir', 'base')

To create archive with algorithms such as zstandard, you can call with custom filter.

.. code-block:: python

import py7zr

my_filters = [{"id": py7zr.FILTER_ZSTD}]
another_filters = [{"id": py7zr.FILTER_ARM}, {"id": py7zr.FILTER_LZMA2, "preset": 7}]
with py7zr.SevenZipFile('target.7z', 'w', filters=my_filters) as archive:
    archive.writeall('/path/to/base_dir', 'base')

shutil helper

py7zr also support shutil interface.

.. code-block:: python

from py7zr import pack_7zarchive, unpack_7zarchive
import shutil

# register file format at first.
shutil.register_archive_format('7zip', pack_7zarchive, description='7zip archive')
shutil.register_unpack_format('7zip', ['.7z'], unpack_7zarchive)

# extraction
shutil.unpack_archive('test.7z', '/tmp')

# compression
shutil.make_archive('target', '7zip', 'src')

Requirements

py7zr uses a python3 standard lzma module for extraction and compression. The standard lzma module uses liblzma that support core compression algorithm of 7zip.

Minimum required version is Python 3.9.

py7zr tested on Linux, macOS, Windows and Ubuntu aarch64.

It hopefully works on M1 Mac too.

Recommended versions are:

Following fixes are included in these versions, and it is not fixed on python3.6.

Following improvements are included in CPython 3.10

.. lzma module: https://docs.python.org/3/library/lzma.html .. liblzma: https://tukaani.org/xz/ .. BPO-21872: https://bugs.python.org/issue21872 .. BPO-41486: https://bugs.python.org/issue41486 .. PyPy3-3090: https://foss.heptapod.net/pypy/pypy/-/issues/3090 .. PyPy3-3242: https://foss.heptapod.net/pypy/pypy/-/issues/3242

Dependencies

There are several dependencies to support algorithms and CLI expressions.

===================== =============================== Package Purpose ===================== =============================== PyCryptodomex 7zAES encryption PyZstd ZStandard compression PyPPMd PPMd compression Brotli Brotli compression (CPython) BrotliCFFI Brotli compression (PyPy) inflate64 Enhanced deflate compression pybcj BCJ filters multivolumefile Multi-volume archive read/write texttable_ CLI formatter ===================== ===============================

.. Pycryptodomex : https://www.pycryptodome.org/en/latest/index.html .. PyZstd : https://pypi.org/project/pyzstd .. PyPPMd : https://pypi.org/project/pyppmd .. Brotli : https://pypi.org/project/brotli .. BrotliCFFI : https://pypi.org/project/brotlicffi .. inflate64 : https://pypi.org/project/inflate64 .. pybcj : https://pypi.org/project/pybcj .. multivolumefile : https://pypi.org/project/multivolumefile .. _texttable : https://pypi.org/project/texttable

Performance

You can find a compression and decompression benchmark results at Github issue and wiki page

py7zr works well, but slower than 7-zip and p7zip C/C++ implementation by several reasons. When compression/decompression speed is important, it is recommended to use these alternatives through subprocess.run python interface.

py7zr consumes some memory to decompress and compress data. It requires about 300MiB - 700MiB free memory to work well at least.

Use Cases

.. _PyTorch: https://pytorch.org/ .. _aqtinstall: https://github.com/miurahr/aqtinstall .. _PreNLP: https://github.com/lyeoni/prenlp .. _mlox: https://github.com/mlox/mlox

Security

Please find a Security Policy_ of this project.

Version 0.20.0, 0.19.0, 0.18.10 or before has a vulnerability for path traversal attack. Details are on "CVE-2022-44900: path traversal vulnerability in py7zr" disclose article .

Affected versions are vulnerable to Directory Traversal due to insufficient checks in the 'py7zr.py' and 'helpers.py' files

You are recommend to update immediately to version 0.20.2 or later

.. _vulnerability for path traversal: https://security.snyk.io/vuln/SNYK-PYTHON-PY7ZR-3092461

I really appreciate Mr. Matteo Cosentino for notification and corporation on security improvement.

.. _disclose article: https://lessonsec.com/cve/cve-2022-44900/

.. _Security Policy : https://py7zr.readthedocs.io/en/latest/SECURITY.html

License

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA