Open rabernat opened 3 years ago
👋 Thanks for opening your first issue here! Please make sure you filled out the template with as much detail as possible.
You might also want to take a look at our Contributing Guide and Code of Conduct.
@rabernat that is definitely something that would be of interest! Is this something you'd want to work on?
Since it requires an extra dependency, it would be best if it's made optional. There are plenty of examples of how to implement and test this in the code base (for example, the SFTP and TQDM support) but I'd be happy to provide more specific guidance and help.
Thanks for the amazingly useful package! ❤️
Description of the problem
I want to download a file that is compressed with the extension
.Z
:ftp://ftp.noc.soton.ac.uk/pub/sxj/clim/netcdf/hfns11a.nc.Z
I can download and decompress it fine on the command line using
gunzip
My best attempt with pooch is
any other
methods
raise errors. However, I don't think LZMA is the right decompressor. This data is compressed using LZW.I have figured out how to decompress it in python using the unlzw3 package.
I have verified that this matches the results of
gunzip
Would there be interest in adding this compressor to Pooch?