Skip to main content

Product Page | Documentation | Demos | Blog | API Reference | Search | Free Support | Temporary License

Try our Free Online Apps demonstrating some of the most popular compression and archive-related functionality.

Aspose.Zip for Python via .NET is a Python API to create, manipulate, extract & protect archive formats including ZIP, BZIP, BZ2 & TAR. It allows your Python applications to compress/decompress files and folders without getting into the complexity of coding new compression algorithms or understanding the existing ones. Enable your programs to work with a vast range of features, such as creating archives, saving archives, archive extraction, encrypting/decrypting archives, compressing single or multiple files as well as directory contents. It also allows you to apply security to your archived and compressed files and folders via password, AES (128, 192, 256) encryption, or mixed encryption. Check out the Landing Pages of Aspose.Zip for Python via .NET for a more detailed description of the features and possibilities of the library.

Archive Processing Features

  • Compress files and folders into standard ZIP formats.
  • Supports Deflate, Bzip2 & LZMA compression algorithms.
  • Apply simple password or AES128, AES192, AES256 encryption to archives.
  • Employ different protection schemes for each file within an archive.
  • Append more files to an existing zipped archive.
  • Use Gzip or Bzip2 to pack files & folders into a TAR archive.
  • Supports LZMA or LZMA2 compression & optional encryption to create 7z archives.
  • Create self-extracting compressed archives.

Compress Files As

Compression: Zip, Tar, Cpio, GZip, Bz2, Z, Xz, Lzip, 7z

Read Archives

Decompression: Zip, Rar, Cab, Tar, Cpio, GZip, Bz2, Z, Xz, Lzip

Platform Independence

Aspose.Zip for Python via .NET can be used to develop 32-bit and 64-bit Python applications for different operating systems (such as Windows, Linux or MacOS) where Python 3.5 or later is installed.

Get Started

Run pip install aspose-zip to fetch the package. If you already have Aspose.Zip for Python via .NET and want to get the latest version, please run pip install --upgrade aspose-zip.

To learn more about Aspose.Zip for Python via .NET and explore the basic requirements and features of the library, check out the following Aspose.Zip for Python via .NET Documentation pages for other use cases.

How to ZIP files

import aspose.zip as zp

with zp.Archive() as archive:
    archive.create_entry("entry_name.dat", "input_file.dat")
    archive.save('my_archive.zip')

How to UnZIP files

import aspose.zip as zp

with zp.Archive("input_archive.zip") as archive:
    archive.extract_to_directory("outputDirectory")

How to create 7z Archive with AES Encryption

import aspose.zip as zp
import io

with zp.sevenzip.SevenZipArchive(zp.saving.SevenZipEntrySettings(None, zp.saving.SevenZipAESEncryptionSettings("p@s$"))) as archive:
    archive.create_entry("data.bin", io.BytesIO(b"\x00\xFF"))
    archive.save("result_archive.7z")

Demos:

Product Page | Documentation | Demos | Blog | API Reference | Search | Free Support | Temporary License

Release files for aspose-zip 26.9.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for aspose-zip 26.9.0
File
aspose_zip-26.9.0-py3-none-win_amd64.whl Python 3 none Windows x86-64 Details
aspose_zip-26.9.0-py3-none-win32.whl Python 3 none Windows x86-32 Details
aspose_zip-26.9.0-py3-none-manylinux1_x86_64.whl Python 3 none Linux glibc 2.5+ x86-64 Details
aspose_zip-26.9.0-py3-none-macosx_10_14_x86_64.whl Python 3 none macOS 10.14+ x86-64 Details

Total release size: 163.0 MB

Release files / aspose_zip-26.9.0-py3-none-win_amd64.whl

Download URL aspose_zip-26.9.0-py3-none-win_amd64.whl
Size 39.0 MB
Tags Python 3 Windows x86-64
SHA-256 checksum
How to use checksums
3f1e602b67056540aa3c5ae90cc83e9c75467171369e180ad4fcc9499d738f39
BLAKE2b-256 checksum
How to use checksums
857b18cc25620be618eee6858c8dd2b6b4ce693ea87f0e05ad15577ded3e191d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.13

Release files / aspose_zip-26.9.0-py3-none-win32.whl

Download URL aspose_zip-26.9.0-py3-none-win32.whl
Size 34.5 MB
Tags Python 3 Windows x86-32
SHA-256 checksum
How to use checksums
acde3d7902ab7edf9a6342ab8b17c3dc42847219200207c351197c7aa189de50
BLAKE2b-256 checksum
How to use checksums
b07a033e7c62a115b9702eeed198548b9663dbdd753c2b6d909911c1aff47f8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.13

Release files / aspose_zip-26.9.0-py3-none-manylinux1_x86_64.whl

Download URL aspose_zip-26.9.0-py3-none-manylinux1_x86_64.whl
Size 47.3 MB
Tags Linux glibc 2.5+ x86-64 Python 3
SHA-256 checksum
How to use checksums
099db332dc3263ab849793074313852d09534edd4b3fc293101af152dd91525c
BLAKE2b-256 checksum
How to use checksums
1f147e7a8c72def2f9a449ed5a32d2338de9677bb9cc5d1737f9cd54a1c24960
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.13

Release files / aspose_zip-26.9.0-py3-none-macosx_10_14_x86_64.whl

Download URL aspose_zip-26.9.0-py3-none-macosx_10_14_x86_64.whl
Size 42.2 MB
Tags Python 3 macOS 10.14+ x86-64
SHA-256 checksum
How to use checksums
420192bec06eed8cf00850ec5f9019354ff9ac0f99a97eab6a667a2456b66e57
BLAKE2b-256 checksum
How to use checksums
8b40d95851d6ea9a0367e113fa1c622840a32c73f62e9dbaef934e1c4637fc6e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.13

Release history Release notifications | RSS feed

This release

26.9.0 This release

4 release files

26.8

4 release files

26.7.0

4 release files

26.6.0

4 release files

26.5.0

4 release files

26.4.0

4 release files

26.3.0

4 release files

26.2.0

4 release files

26.1.0

4 release files

25.9.0

4 release files

25.8.0

4 release files

25.7.0

4 release files

25.6.0

4 release files

25.5.0

4 release files

25.4.0

4 release files

25.3.0

4 release files

25.2.0

4 release files

25.1.0

4 release files

24.9.0

4 release files

24.8.0

4 release files

24.7.0

4 release files

24.6.0

4 release files

24.5.0

4 release files

24.4.0

4 release files

24.3.0

4 release files

24.2.0

4 release files

24.1.0

4 release files

23.9.0

4 release files

23.8.0

3 release files

23.7.0

3 release files

23.6.1

3 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page