March 9, 2014
8:07 a.m.
Iâm sure that we have that. I remember svenâs code using encoder but I do not know where. # Method for encoding ints with base64 encoding def encode(n): data = struct.pack("i", n) s = base64.b64encode(data) return s