How to decompress .Z file?

2007-08-20 Thread Hyunchul Kim
Hi, all How can .Z file be decompressed? According to python library reference, .Z file might not be supported by python, yet. Best, Hyunchul Kim -- http://mail.python.org/mailman/listinfo/python-list

Re: How to decompress .Z file?

2007-08-20 Thread [EMAIL PROTECTED]
On Aug 20, 9:02 am, Hyunchul Kim [EMAIL PROTECTED] wrote: How can .Z file be decompressed? According to python library reference, .Z file might not be supported by python, yet. Guess you can *outsource* the process to 7zip: http://7-zip.org/download.html It supports .z archives. Lorenzo

Re: How to decompress .Z file?

2007-08-20 Thread Thomas Jollans
On Monday 20 August 2007, Hyunchul Kim wrote: Hi, all How can .Z file be decompressed? According to python library reference, .Z file might not be supported by python, yet. The GNU zip program (gzip) supports .Z and .z archives, so if you only want to support UNIX-like systems you could

Re: How to decompress .Z file?

2007-08-20 Thread Nick Craig-Wood
Hyunchul Kim [EMAIL PROTECTED] wrote: How can .Z file be decompressed? The old unix program compress used to generate these files. http://packages.debian.org/unstable/utils/ncompress You'll find the command line programs gzip/gunzip/zcat can decompress them too. According to python