The following two functions are used to compress arbitrary Python objects and send them safely via socket or email, using only printable chars. In my specific message protocol, '=' signs are also not allowed; I could have replaced them or truncate them - I chose to truncate them.
I think they work quite well speed-wise and have no unpredicted errors. I post it here for your judgement.
## Framework
import cPickle as pickle
import zlib as zl
import base64 as b64
def compress(o):
## First pickle
p = pickle.dumps(o, pickle.HIGHEST_PROTOCOL)
## Then zip
z = zl.compress(p, zl.Z_BEST_COMPRESSION)
## Then encode
e = b64.b64encode(z)
## Then truncate
t = e.rstrip("=")
## Then return
return t
def decompress(s):
## First pad
e = s + "=" * (-len(s) % 4)
## Then decode
z = b64.b64decode(e)
## Then unzip
p = zl.decompress(z)
## Then unpickle
o = pickle.loads(p)
## Then return
return o
1 Answer 1
Avoid single letter variable names. Spell out the words they stand for to make your code easier to read.
Your comments are useless. You are just restating the code in less detail. The only comment you should have is explaining about the '=' like you did in your post.
Don't double-space your code.
Pickle isn't safe. You can construct a pickle that does arbitrary things like delete files or what-not. So you should pretty much never be sending them over a socket.
-
-
1\$\begingroup\$ I'm referring to all the newlines in your function. Not the top level space. \$\endgroup\$Winston Ewert– Winston Ewert2014年02月14日 00:49:25 +00:00Commented Feb 14, 2014 at 0:49