python-libarchive-c
python-libarchive-c copied to clipboard
Python interface to libarchive
I'm doing the rounds looking at 7zip libraries and I want to share the test file I'm using, Gyan's Windows build of ffmpeg: https://github.com/GyanD/codexffmpeg/releases I'm not sure if python-libarchive-c will...
Add non-recursive file process for function `add_files` with option `recursive`, also limit `add_file` only process the entry itself. Example mtree output for non-recursive mode ``` #mtree /set type=file uid=0 gid=0...
It seems as though the line: with libarchive.file_writer('test.tar.gz', 'ustar', 'gzip') as archive: could be boiled down to: with libarchive.file_writer('test.tar.gz') as archive: as `format_name` and `filter_name` can be inferred by `filepath`'s...
Hi, I want to use this in my code but getting problems to make it work on windows with python 3.4 I've installed it with pip without a problem but...
OS: windows 10 python version: 3.5.2 I install it via `pip install libarchive-c `, here is the Error traceback: ``` (C:\Users\**\Miniconda3) C:\Users\**>python -c "import libarchive" Traceback (most recent call last):...
I'm in the process of migrating from python2 using python-libarchive to python3 using python-libarchive-c. In all, the process has been quite easy (and many thanks to you folks for keeping...
Would it be possible to support reading the CRC32 hash for the contained files from headers that contain them, such as those for 7-zip? Currently the entries produced by file_reader()...
``` Python def extract_file(filepath, flags=0): """Extracts an archive from a file into the current directory.""" ``` May I propose an optional arg to specify the folder I want to extract...
The version of `libarchive` included in Mac OS X is obsolete, consequently many people use [Homebrew](https://brew.sh/) to install another version, but then they have to set the `LIBARCHIVE` environment variable,...