py7zr
py7zr copied to clipboard
7zip in python3 with ZStandard, PPMd, LZMA2, LZMA1, Delta, BCJ, BZip2, and Deflate compressions, and AES encryption.
py7zr has already been used in many production projects, such as aqtinstall etc. So it should be changed to be stable/production of status. also move to be version 1.0.0
``` import os import py7zr try: with py7zr.SevenZipFile('corrupt.zip', mode='r') as z: z.extractall('test') except Exception as e: os.remove('corrupt.zip') ``` When I’m extracting a particular corrupted 7z file, I get the PermissionError:...
## Pull request type select from below - Feature enhancement ## Which ticket is resolved? ## What does this PR change? - refactor: introduce py7zr.io.py - fix: Drop The read/readall...