PyEasyArchive
PyEasyArchive copied to clipboard
A very intuitive and useful adapter to libarchive for universal archive access.
Hi, I am basically trying to create a. Before i used cpio directly "cpio -ov -A -H crc -F" to create the archive, which works fine. Now I want to...
While installing libarchive I got the error : Verifying that the library is accessible.Library can not be loaded: [WinError 126] Le module spécifié est introuvable. I was surprised to discover...
In `libarchive/adapters/archive_read.py` line 61 the codec is set to `_ASCII_ENCODING`, which in line 18 is hard-coded into 'ascii': ```python filepath = filepath.encode(_ASCII_ENCODING) ``` ```python _ASCII_ENCODING = 'ascii' ``` Replacing `_ASCII_ENCODING`...
utf-8 encoding is hardcoded in this function of the source code making reading / extracting files with non utf-8 names impossible ``` def _archive_entry_pathname(entry): filepath = libarchive.calls.archive_entry.c_archive_entry_pathname(entry) if filepath is...
Hi, installing on ubuntu 21.10 fails with some weird doubled "liblibarchive.so" error. Happens both for the version from pip as well as directly from github: ``` ERROR: Command errored out...
because MIT license is only available in master
Per https://docs.python.org/2/library/ctypes.html the find_library function should be called "without any prefix like lib, suffix like .so, .dylib or version number". - change _LIBRARY_NAME from "libarchive" to "archive" as required -...
HI,I have many pic files in one directory.more than 3GB. can use this compress some multivolume file ,like one compression file 100M,7zip,zip,tar will be all right. thanks.
Hello. I read #27 and followed the guide in the comments - https://github.com/dsoprea/PyEasyArchive/issues/27#issuecomment-574887181 Everything in the guide was accurate except for `libnettle-7.dll` was actually named `libnettle-8.dll`. I don't know that...