Created
August 22, 2015 23:58
-
-
Save foone/7b835662d20c0ca40f2b to your computer and use it in GitHub Desktop.
Never write your code this way
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: iso-8859-1 -*- | |
import sys | |
if not len(sys.argv)==3: | |
print 'Usage: decompress.py <filein> <fileout>' | |
sys.exit() | |
def getbyte(file): | |
char=file.read(1) | |
if char=='': | |
return -1 | |
return ord(char[0]) | |
fin=open(sys.argv[1],'rb') | |
fout=open(sys.argv[2],'wb') | |
c=getbyte(fin) | |
while not c==-1: | |
if c==255: | |
num=getbyte(fin) | |
val=getbyte(fin) | |
while num>0: | |
fout.write(chr(val)) | |
num-=1 | |
else: | |
fout.write(chr(c)) | |
c=getbyte(fin) | |
fin.close() | |
fout.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment