A minizip wrapper - To create a password encrypted zip file in python.
Project description
pyminizip
To create a password encrypted zip file in python. And the zip file is able to extract in WINDOWS.
This is a simple Minizip wrapper of python. (http://www.winimage.com/zLibDll/minizip.html)
This software uses zlib. License: zlib/libpng License.
Install
$ pip install pyminizip
Install zlib
# linux
$ sudo apt-get install zlib
# mac
$ xcode-select --install
$ brew install zlib
How to use
This package just provides three functions.
pyminizip.compress("/srcfile/path.txt", "file_path_prefix", "/distfile/path.zip", "password", int(compress_level))
Args:
- src file path (string)
- src file prefix path (string) or None (path to prepend to file)
- dst file path (string)
- password (string) or None (to create no-password zip)
- compress_level(int) between 1 to 9, 1 (more fast) <---> 9 (more compress) or 0 (default)
Return value:
- always returns None
pyminizip.compress_multiple([u'pyminizip.so', 'file2.txt'], [u'/path_for_file1', u'/path_for_file2'], "file.zip", "1233", 4, progress)
Args:
- src file LIST path (list)
- src file LIST prefix path (list) or []
- dst file path (string)
- password (string) or None (to create no-password zip)
- compress_level(int) between 1 to 9, 1 (more fast) <---> 9 (more compress)
- optional function to be called during processing which takes one argument, the count of how many files have been compressed
Return value:
- always returns None
pyminizip.uncompress("/srcfile/path.zip", "password", "/dirtoextract", int(withoutpath))
Args:
- src file path (string)
- password (string) or None (to unzip encrypted archives)
- dir path to extract files or None (to extract in a specific dir or cwd)
- withoutpath (exclude path of extracted)
Return value:
- always returns None
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyminizip-0.2.6.tar.gz
(261.2 kB
view details)
File details
Details for the file pyminizip-0.2.6.tar.gz
.
File metadata
- Download URL: pyminizip-0.2.6.tar.gz
- Upload date:
- Size: 261.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a954dd2a65fd72c8b827b83fb806fb4f301075a6ec43e207d3345ab15843a7a |
|
MD5 | 2edbc128fba26eff690d4be275512bed |
|
BLAKE2b-256 | 1bb4b5584325a03acfbca05922700ab9195b5875a936dc23960224087088a409 |