python-zstandard
python-zstandard copied to clipboard
Python bindings to the Zstandard (zstd) compression library
On Unix like systems, distutils will usually set the preprocessor attribute to the appropriate command. On MSVC it never sets the preprocessor, though. In either case, try to use it...
`make_cffi.py` assumes the first argument of the distutils compiler will work as the preprocessor. That fails when using `ccache` by prepending it in the `CC` environment variable like `CC="ccache gcc"`....
https://python-zstandard.readthedocs.io/en/latest/compressor.html says > level – Integer compression level. Valid values are all negative integers through 22. But the usage elsewhere in the file, both param default and the "Typically usage...
Since I'm looking into these things for something else and I've noticed there are a lot of wheels for this module, I figured I'd dump this information here: it is...
Python 3.6 added an optional `max_length` argument on decompressor's `decompress()` method. e.g. https://docs.python.org/3/library/zlib.html#zlib.Decompress.decompress. This argument can reduce a lot of (but not all) of the performance badness in the API...
The links were all relative, so while working on GitHub, they were broken on PyPI.
I'm trying to package your module as an rpm package. So I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account. -...
Hello there! It was awesome to find your library and I'd like to test it. I appreciate all the time and effort you put into it and writing the documentation....
4ec24a980134584a5309cd9d55aacac3dcc27e9e added `$ZSTD_EXTRA_COMPILER_ARGS` to easily add values to `extra_compile_args=...` passed to `distutils.extension.Extension()` It would be useful to have `$ZSTD_EXTRA_LINKER_ARGS` that controlled `extra_linker_args=...` the same way
I'm getting 11 failed tests on Fedora 32 on s390x architecture. s390x is big-endian, could this be the reason? ``` $ pytest --last-failed ================================================= test session starts ================================================== platform linux...