python-lz4 icon indicating copy to clipboard operation
python-lz4 copied to clipboard

LZ4 bindings for python

Results 22 python-lz4 issues
Sort by recently updated
recently updated
newest added

Hi, Trying to install on Windows but getting the following; any idea? Thank you very much for any help! ``` C:\Python34\Scripts>pip3 install lz4 Collecting lz4 Downloading lz4-0.7.0.tar.gz Building wheels for...

OS: Windows 11 Pro Python v3.10.1 64-bit Tried the simple command: `python -m pip install lz4` This did not work, error said I needed "wheel". So I got wheel. `python...

> Because LZ4 doesn't define a container format, the python bindings will insert the original data size as an integer at the start of the compressed payload, like most bindings...

Should this library safely release the GIL around compress and decompress calls? This would allow the use of this library in parallel on multiple cores within a single process. https://www.safaribooksonline.com/library/view/python-cookbook-3rd/9781449357337/ch15s07.html

Hi, Could you add some text to the README pointing people to the new location of the project: https://github.com/python-lz4/python-lz4 Thanks.

It would be awesome to have streaming compressor/decompressor API as with `zlib.compressobj` and `zlib.decompressobj`. Even more useful would be: being able to set any configuration on the compressor/decompressor objects, like...

Supercedes #47 . Adds a test

Currently, if the input is over 2 GB, lz4.compress may silently truncate the input, or if you get lucky, raise "SystemError: Negative size passed to PyString_FromStringAndSize". This pull request handles...

For compiling with MSVC on win32, you have to remove the extra_compile_args, or better still replace it with one suited for MSVC like this one: ``` extra_compile_args=["/Ot", "/Wall", "/DLZ4_VERSION=\"r119\""] ```...