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

Reply via email to