pyunpack
pyunpack copied to clipboard
unpack archive files in python
Hi, I saw that patool isn't called from python. Is there a reason to call it in a sub process? I can provide a pull request.
Achive file with chinese character name file in it unpack will give wrong results, zip "gbk" decode request? Achive: test.zip ├─test │ └─测试 (subfolder with chinese name) │ └─test │...
I'm writing a python script to process some old archives that include many .rar files. I can successfully extract data from them using Archive.extractall from pyunpack. However, occasionally I will...
currently version 0.3 does not include github __init__.py fix for supporting patool.exe path #20 thanks!
PS E:\Project\***\test> & E:/Installed/Python/Python37-32/python.exe e:/Project/**/test/unzipfile1.py Traceback (most recent call last): File "e:/Project/***/test/unzipfile1.py", line 7, in Archive('软件 安排 编辑.rar').extractall('./module/temp') File "E:\Installed\Python\Python37-32\lib\site-packages\pyunpack\__init__.py", line 113, in extractall self.extractall_patool(directory, patool_path) File "E:\Installed\Python\Python37-32\lib\site-packages\pyunpack\__init__.py", line 74,...
pyunpack currently doesn't extract password protected ZIP files with `backend = "auto"`. But it is able to do it with manually chosen "patool" as backend. **Default config fails:** ``` $...