We're using zstandard wihtout the magic header, but for decompression there is no support in decompress method. This requires to prepend the magic header before processing it.
It's a minor issue but it's not very efficient having to concatenate the buffers unnecessarily.
We're using zstandard wihtout the magic header, but for decompression there is no support in
decompress
method. This requires to prepend the magic header before processing it. It's a minor issue but it's not very efficient having to concatenate the buffers unnecessarily.Opened a pull request here: https://github.com/indygreg/python-zstandard/pull/217 with the following changes: