CodecZlib.jl
CodecZlib.jl copied to clipboard
zlib codecs for TranscodingStreams.jl.
Bumps [julia-actions/cache](https://github.com/julia-actions/cache) from 1 to 2. Release notes Sourced from julia-actions/cache's releases. v2.0.0 Breaking Changes ⚠️ v2.0.0 requires node20. This is a breaking change, because node20 does not support the...
It would be nice to be able to copy a Codec like in python https://docs.python.org/3/library/zlib.html#zlib.Compress.copy This can be useful when repeating compression of data with a long common prefix like...
see https://docs.python.org/3/library/zlib.html
This looks current in the doc, but no longer (I believe this is a pattern I used before) works for me: ```julia _ _ _(_)_ | Documentation: https://docs.julialang.org (_) |...
They are both owned by `JuliaIO`, both (de)compress gzip, and both are up-to-date?
I'm trying to decompress a 60GB gzippe'd file (this is the compressed size, not sure what the uncompressed is but I expect a high compression ratio), and I hit this...
If I enable DEBUG messages (by setting `level = Logging.Debug`) then my output is completely flooded by `TranscodingStreams | [Debug] called process()`. Is this message necessary to call as often...
Hi, I am parsing through a zlib compressed XML file and get the below error during the decompression. The package that I am testing can be found here: https://bitbucket.org/SSamanipour/ms_import.jl/src/master/. Any...
CRC call
Would this be a good package to implement the crc calls to zlib?
How should one proceed to generate a valid empty gzip file using CodecZlib? Here is what I tried: ``` import CodecZlib gz = CodecZlib fh = gz.GzipCompressorStream(open("test_out.gz", "w")) close(fh) ```...