Skip to content

Instantly share code, notes, and snippets.

@foone
Created August 22, 2015 23:58
Show Gist options
  • Save foone/7b835662d20c0ca40f2b to your computer and use it in GitHub Desktop.
Save foone/7b835662d20c0ca40f2b to your computer and use it in GitHub Desktop.
Never write your code this way
#!/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