pylzma
pylzma copied to clipboard
Python bindings for the LZMA library
Could you please consider to use python3 syntax in test_usage.py?
Not sure if this project is still maintained. Came here in hopes this could extract a 7z with BCJ2 compression which is insupported in `py7zr` I get an IndexError when...
I have some large files that I need to extract, given their size and that pylzma reads the entire file into memory, can a stream API be provided for `py7zlib.ArchiveFile`...
Dear Joachim, if possible, please, could you upload the last git version (with some important fixes for reading 7z-archives) on pypi? Many thanks.
also addressed #66
Error when running example: ``` Traceback (most recent call last): File "E:\Python\7ztest.py", line 38, in sevenZfile.extractall('.') File "E:\Python\7ztest.py", line 33, in extractall outfile.write(self.archive.getmember(name).read()) File "E:\Python\py7zlib.py", line 632, in read data...
This is my code: ``` import sys if (sys.version_info > (3, 0)): import urllib.request as urllib else: import urllib2 as urllib import os import py7zlib def download(url, output): data =...
Install on ARM64 arch ubuntu 16.04, got this with pip3 install pylzma==0.5.0 Python version 3.5.2 ``` WARNING: Requested pylzma==0.5.0 from https://files.pythonhosted.org/packages/03/d8/10ef072c3cd4301a65a1b762b09eefa02baf8da23b9ea77ebe9546499975/pylzma-0.5.0.tar.gz#sha256=b874172afbf37770e643bf2dc9d9b6b03eb95d8f8162e157145b3fe9e1b68a1c, but installing version 0.5.0.post0 ``` What is this meaning?...
I just learned to develop, repeatedly look at the code, there seems to be no encryption function.
Directories might be empty and required by whatever is contained in the archive, as such skipping them from being included in the list of files shouldn't be a default behavior....