Metadata-Version: 2.1
Name: fastzipfile
Version: 2.2
Summary: Read password protected Zips 100x faster
Home-page: https://github.com/kamilmahmood/fastzipfile
Author: Kamil Mahmood
Author-email: kamil.mahmood@outlook.com
License: UNKNOWN
Description: # fastzipfile
        Read Standard Zip Encryption 2.0 encrypted Zips 100x faster with same interface as standard library's `zipfile.ZipFile`
        
        # Installation
        ```
        pip install fastzipfile
        ```
        # Usage
        You just need to import `fastzipfile` and thats it. It monkey patches `zipfile` with fast decrypter.
        
        ```python
        import fastzipfile
        import zipfile
        
        with zipfile.ZipFile('path-to-file.zip', mode='r') as fz:
            f = fz.open('path-to-file-in-zip', pwd=b'password')
            content = f.read()
        ```
        
        # Limitation
        Currently it only supports what zipfile.ZipFile supports e.g. no AES-128 or AES-256 support.
        
        # License
        This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
        
Keywords: zip zipfile fastzip
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.5, <3.9
Description-Content-Type: text/markdown
