You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@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?
The text was updated successfully, but these errors were encountered: