pylzma icon indicating copy to clipboard operation
pylzma copied to clipboard

Python bindings for the LZMA library

Results 25 pylzma issues
Sort by recently updated
recently updated
newest added

Hi How can I read a collections of 7z files created with [`-v` switch](https://sevenzip.osdn.jp/chm/cmdline/switches/volume.htm)? Thanks

Hi, I'm having an issue trying to decompress [the following archive](https://github.com/damalsk/damalsksoundpack/releases/download/v0.2/@.s.soundpack.7z) using pylzma. This is on Windows 10 with pylzma 0.5.0. Towards the end of the archive, I'm getting a...

Decompressing large .7z files (> 4GiB) causes Python to raise MemoryError exception: ``` python for name in self.archive.getnames(): out_filename = os.path.join(path, name) out_dir = os.path.dirname(out_filename) if not os.path.exists(out_dir): os.makedirs(out_dir) with...

Is it possible to add read line by line functionality into the library? It will be very helpful for reading large 7zip files.

It is better that py7zlib have an API to retrieve file modes. I've been working for it and PR soon. And I'd like to propose supporting Unix file mode (rwx)...

Hi this is a fix for a memory problem I found when uncompressing large archives. You might want to revise my changes and eventually merge them on your master. Also,...

Hi- I've been using pylzma to handle large(ish) 7z files ranging from 50MB-1.0GB compressed. I am trying to access individual files from the archive, one at a time, and I...

I think could be useful add a callback to the ArchiveFile.read method to get the decompress' progress

Having such wrapper would make all the code written for zipfile work with 7zip files as well. See also rarfile: http://pypi.python.org/pypi/rarfile/

Environment: fresh installation of OpenBSD 7.3 with Python 3.10 and py3-pip (23.0.1). Created a blank venv with `python3 -m venv pylzmaenv; cd pylzmaenv; . bin/activate` Compilation requires malloc.h to which...