aspose-zip


Nameaspose-zip JSON
Version 24.4.0 PyPI version JSON
download
home_pagehttps://products.aspose.com/zip/python-net
SummaryAspose.Zip for Python via .NET is a library that can be used by Python developers for a variety of archive-processing tasks. It supports ZIP, GZIP, BZIP2, TAR, CPIO, LZIP, 7Z, LZMA, XZ and Z formats. It allows you to encrypt and decrypt files, create self-extracting archives and extract RAR, CAB, WIM formats as well. The API is easy to use and robust.
upload_time2024-04-27 11:41:35
maintainerNone
docs_urlNone
authorAspose
requires_python<3.12,>=3.5
licenseOther/Proprietary License
keywords zip compression decompression encryption decryption deflate sfx self-extracted self-extractor pack unpack compress decompress encrypt decrypt extract zipcrypto bzip2 ppmd cpio tar untar gnu-tar shar gzip lzip lzma 7z lzma2 rar rar4 rar5 cab wim xar xz snappy z
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [Product Page](https://products.aspose.com/zip/python-net/) | [Documentation](https://docs.aspose.com/zip/python-net/) | [Demos](https://products.aspose.app/zip/family) | [Blog](https://blog.aspose.com/categories/aspose.zip-product-family/) | [API Reference](https://reference.aspose.com/zip/python-net/) | [Search](https://search.aspose.com/) | [Free Support](https://forum.aspose.com/c/zip) | [Temporary License](https://purchase.aspose.com/temporary-license)

Try our [Free Online Apps](https://products.aspose.app/zip/applications) 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](https://products.aspose.com/zip/python-net/) 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](https://docs.aspose.com/zip/python-net/) pages for other use cases.

## How to ZIP files

```python
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

```python
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

```python
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](https://products.aspose.app/zip/family):
- [Zip-File](https://products.aspose.app/zip/compression)
- [Unzip-File](https://products.aspose.app/zip/extract)
- [Conversion](https://products.aspose.app/zip/conversion)
- [Merger](https://products.aspose.app/zip/merger)
------------

[Product Page](https://products.aspose.com/zip/python-net/) | [Documentation](https://docs.aspose.com/zip/python-net/) | [Demos](https://products.aspose.app/zip/family) | [Blog](https://blog.aspose.com/categories/aspose.zip-product-family/) | [API Reference](https://reference.aspose.com/zip/python-net/) | [Search](https://search.aspose.com/) | [Free Support](https://forum.aspose.com/c/zip) | [Temporary License](https://purchase.aspose.com/temporary-license)



            

Raw data

            {
    "_id": null,
    "home_page": "https://products.aspose.com/zip/python-net",
    "name": "aspose-zip",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.12,>=3.5",
    "maintainer_email": null,
    "keywords": "Zip, compression, decompression, encryption, decryption, deflate, sfx, self-extracted, self-extractor, pack, unpack, compress, decompress, encrypt, decrypt, extract, ZipCrypto, bzip2, PPMd, cpio, tar, untar, gnu-tar, shar, gzip, lzip, LZMA, 7z, LZMA2, RAR, RAR4, RAR5, cab, wim, xar, xz, snappy, Z",
    "author": "Aspose",
    "author_email": null,
    "download_url": null,
    "platform": "macos_x86_64",
    "description": "[Product Page](https://products.aspose.com/zip/python-net/) | [Documentation](https://docs.aspose.com/zip/python-net/) | [Demos](https://products.aspose.app/zip/family) | [Blog](https://blog.aspose.com/categories/aspose.zip-product-family/) | [API Reference](https://reference.aspose.com/zip/python-net/) | [Search](https://search.aspose.com/) | [Free Support](https://forum.aspose.com/c/zip) | [Temporary License](https://purchase.aspose.com/temporary-license)\n\nTry our [Free Online Apps](https://products.aspose.app/zip/applications) demonstrating some of the most popular compression and archive-related functionality.\n\n**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.\nCheck out the [Landing Pages](https://products.aspose.com/zip/python-net/) of **Aspose.Zip for Python via .NET** for a more detailed description of the features and possibilities of the library.\n\n## Archive Processing Features\n\n- Compress files and folders into standard ZIP formats.\n- Supports Deflate, ```Bzip2``` & ```LZMA``` compression algorithms.\n- Apply simple password or ```AES128```, ```AES192```, ```AES256``` encryption to archives.\n- Employ different protection schemes for each file within an archive.\n- Append more files to an existing zipped archive.\n- Use ```Gzip``` or ```Bzip2``` to pack files & folders into a ```TAR``` archive.\n- Supports ```LZMA``` or ```LZMA2``` compression & optional encryption to create ```7z``` archives.\n- Create self-extracting compressed archives.\n\n## Compress Files As\n\n**Compression:** Zip, Tar, Cpio, GZip, Bz2, Z, Xz, Lzip, 7z\n\n## Read Archives\n\n**Decompression:** Zip, Rar, Cab, Tar, Cpio, GZip, Bz2, Z, Xz, Lzip\n\n## Platform Independence\n\n**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.\n\n## Get Started\n\nRun ```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```.\n\nTo 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](https://docs.aspose.com/zip/python-net/) pages for other use cases.\n\n## How to ZIP files\n\n```python\nimport aspose.zip as zp\n\nwith zp.Archive() as archive:\n\tarchive.create_entry(\"entry_name.dat\", \"input_file.dat\")\n\tarchive.save('my_archive.zip')\n```\n\n## How to UnZIP files\n\n```python\nimport aspose.zip as zp\n\nwith zp.Archive(\"input_archive.zip\") as archive:\n\tarchive.extract_to_directory(\"outputDirectory\")\n\n```\n\n## How to create 7z Archive with AES Encryption\n\n```python\nimport aspose.zip as zp\nimport io\n\nwith zp.sevenzip.SevenZipArchive(zp.saving.SevenZipEntrySettings(None, zp.saving.SevenZipAESEncryptionSettings(\"p@s$\"))) as archive:\n\tarchive.create_entry(\"data.bin\", io.BytesIO(b\"\\x00\\xFF\"))\n\tarchive.save(\"result_archive.7z\")\n```\n------------\n##### [Demos](https://products.aspose.app/zip/family):\n- [Zip-File](https://products.aspose.app/zip/compression)\n- [Unzip-File](https://products.aspose.app/zip/extract)\n- [Conversion](https://products.aspose.app/zip/conversion)\n- [Merger](https://products.aspose.app/zip/merger)\n------------\n\n[Product Page](https://products.aspose.com/zip/python-net/) | [Documentation](https://docs.aspose.com/zip/python-net/) | [Demos](https://products.aspose.app/zip/family) | [Blog](https://blog.aspose.com/categories/aspose.zip-product-family/) | [API Reference](https://reference.aspose.com/zip/python-net/) | [Search](https://search.aspose.com/) | [Free Support](https://forum.aspose.com/c/zip) | [Temporary License](https://purchase.aspose.com/temporary-license)\n\n\n",
    "bugtrack_url": null,
    "license": "Other/Proprietary License",
    "summary": "Aspose.Zip for Python via .NET is a library that can be used by Python developers for a variety of archive-processing tasks. It supports ZIP, GZIP, BZIP2, TAR, CPIO, LZIP, 7Z, LZMA, XZ and Z formats. It allows you to encrypt and decrypt files, create self-extracting archives and extract RAR, CAB, WIM formats as well. The API is easy to use and robust.",
    "version": "24.4.0",
    "project_urls": {
        "Homepage": "https://products.aspose.com/zip/python-net"
    },
    "split_keywords": [
        "zip",
        " compression",
        " decompression",
        " encryption",
        " decryption",
        " deflate",
        " sfx",
        " self-extracted",
        " self-extractor",
        " pack",
        " unpack",
        " compress",
        " decompress",
        " encrypt",
        " decrypt",
        " extract",
        " zipcrypto",
        " bzip2",
        " ppmd",
        " cpio",
        " tar",
        " untar",
        " gnu-tar",
        " shar",
        " gzip",
        " lzip",
        " lzma",
        " 7z",
        " lzma2",
        " rar",
        " rar4",
        " rar5",
        " cab",
        " wim",
        " xar",
        " xz",
        " snappy",
        " z"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "341000e163f4f9d4963cb944745225d18c63bb7176c8b1cabf5e758d0680a3f3",
                "md5": "e5b0181ea28576b5c2d88371e6d941d4",
                "sha256": "36dd87c661c7bab70930aa5fbd9c14a2b44d650fa7962990cef80b9612ce9a7a"
            },
            "downloads": -1,
            "filename": "aspose_zip-24.4.0-py3-none-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5b0181ea28576b5c2d88371e6d941d4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.12,>=3.5",
            "size": 38794663,
            "upload_time": "2024-04-27T11:41:35",
            "upload_time_iso_8601": "2024-04-27T11:41:35.509130Z",
            "url": "https://files.pythonhosted.org/packages/34/10/00e163f4f9d4963cb944745225d18c63bb7176c8b1cabf5e758d0680a3f3/aspose_zip-24.4.0-py3-none-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d4994d9884c8ce9ec352e381fc57f31e70ffdef41271483522eb747dc6be9b8",
                "md5": "195d639932f88077a0adbe5032171723",
                "sha256": "5be9068c66e05da7369a42840f808b01126cb6492c19ad071537a255f399b8b5"
            },
            "downloads": -1,
            "filename": "aspose_zip-24.4.0-py3-none-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "195d639932f88077a0adbe5032171723",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.12,>=3.5",
            "size": 41638364,
            "upload_time": "2024-04-27T11:43:47",
            "upload_time_iso_8601": "2024-04-27T11:43:47.613983Z",
            "url": "https://files.pythonhosted.org/packages/7d/49/94d9884c8ce9ec352e381fc57f31e70ffdef41271483522eb747dc6be9b8/aspose_zip-24.4.0-py3-none-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "672e5195975fa9a72718b1368d0c47048d27acccba9f58b97233c9a2f659f3ae",
                "md5": "4dde75442500594491a4a5599841e05e",
                "sha256": "afe63313bd12e5a882ba33f482d50d9f37699367dc2d995bd4a6bceed2371615"
            },
            "downloads": -1,
            "filename": "aspose_zip-24.4.0-py3-none-win32.whl",
            "has_sig": false,
            "md5_digest": "4dde75442500594491a4a5599841e05e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.12,>=3.5",
            "size": 32975187,
            "upload_time": "2024-04-27T11:44:00",
            "upload_time_iso_8601": "2024-04-27T11:44:00.933491Z",
            "url": "https://files.pythonhosted.org/packages/67/2e/5195975fa9a72718b1368d0c47048d27acccba9f58b97233c9a2f659f3ae/aspose_zip-24.4.0-py3-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04c755638d5e019550fc2e9932b3c89f57a68a14dfcf45baadbe08dd09b83f61",
                "md5": "8dba45dc9cc152a27783b71cd7ac1214",
                "sha256": "8442c7701925279c88bb0cf5f3090422e67cbd435d5cc977b04575c7dd7c017f"
            },
            "downloads": -1,
            "filename": "aspose_zip-24.4.0-py3-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8dba45dc9cc152a27783b71cd7ac1214",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.12,>=3.5",
            "size": 36924920,
            "upload_time": "2024-04-27T11:44:15",
            "upload_time_iso_8601": "2024-04-27T11:44:15.798434Z",
            "url": "https://files.pythonhosted.org/packages/04/c7/55638d5e019550fc2e9932b3c89f57a68a14dfcf45baadbe08dd09b83f61/aspose_zip-24.4.0-py3-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-27 11:41:35",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "aspose-zip"
}
        
Elapsed time: 0.27549s