I have a Linux Python script that needs to unzip some zip files. I was using the zipfile module. On a few of these files I'm getting:
BadZipfile: Unsupported compression method 98 for file
Searching around it seems these files are using Method 98 PPMD compression. I figured if python couldn't do it, I'd make a hack system call to unzip 6.0 and be done with it. This errors:
skipping: fileName `PPMd' method not supported
I've tried 7zip:
Extracting fileName Unsupported Method
I thought I hit pay-dirt with a command line utility ppmd, but:
Fast PPMII compressor for textual data, variant I, Nov 6 2009
Segmentation fault
Anything else I can try? WinZip in windows has no problem with these files, but I need to do this in Linux.