Metadata-Version: 1.1
Name: pyminizip
Version: 0.0.2
Summary: A minizip wrapper - To create a password encrypted zip file in python.
Home-page: https://github.com/smihica/pyminizip
Author: Shin Aoyama
Author-email: smihica@gmail.com
License: UNKNOWN
Description: 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 zlib
        
            linux:
            $ sudo apt-get install zlib
            mac:
            $ sudo port install zlib
        
        install pyminizip
        
            $ pip install pyminizip
        
        ----------------------------------------------------------------------------
        
        Provides just one function.
        ==============================
        
        pyminizip.compress("/srcfile/path.txt", "/distfile/path.zip", "password", int(compress_level))
        
          Args:
          1. src file path (string)
          2. dst file path (string)
          3. password (string) or None (to create no-password zip)
          4. compress_level(int) between 1 to 9, 1 (more fast) <---> 9 (more compress) or 0 (default)
        
          Return value:
          - always returns None
        
        ==============================
        
Keywords: zip,file,compress,password,encryption
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: zlib/libpng License
Classifier: Operating System :: OS Independent
Classifier: Topic :: System :: Archiving :: Compression
Classifier: Topic :: Software Development :: Libraries :: Python Modules
