up vote 17 down vote favorite
22
share [g+] share [fb]

How would you convert an integer to base 62 (like hexadecimal, but with these digits: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ').

I have been trying to find a good Python library for it, but they all seems to be occupied with converting strings. The Python base64 module only accepts strings and turns a single digit into four characters. I was looking for something akin to what URL shorteners use.

link|improve this question

Sounds like someone just found an open source project idea :) Let me know if you find anything or decide to create your own... – samoz Jul 13 '09 at 14:24
If you want to create short URLs, you might want to use the whole set of characters which don't need to be encoded: en.wikipedia.org/wiki/Percent-encoding#Types_of_URI_characters. That's 66 characters. – l0b0 Jul 13 '09 at 14:32
I think I'll pass on the dot and the tilde, just to avoid user confusion, but the dash and the underscores should be worthwhile additions, thanks. – mikl Jul 13 '09 at 14:45
what about Base64? You might have better luck finding libraries for that. – Mike Cooper Jul 14 '09 at 4:12
This question has a number of applicable answers: stackoverflow.com/questions/561486/… – Miles Jul 14 '09 at 4:14
show 2 more comments
feedback

11 Answers

up vote 42 down vote accepted

There is no standard module for this, but I have written my own functions to achieve that.

ALPHABET = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"

def base62_encode(num, alphabet=ALPHABET):
    """Encode a number in Base X

    `num`: The number to encode
    `alphabet`: The alphabet to use for encoding
    """
    if (num == 0):
        return alphabet[0]
    arr = []
    base = len(alphabet)
    while num:
        rem = num % base
        num = num // base
        arr.append(alphabet[rem])
    arr.reverse()
    return ''.join(arr)

def base62_decode(string, alphabet=ALPHABET):
    """Decode a Base X encoded string into the number

    Arguments:
    - `string`: The encoded string
    - `alphabet`: The alphabet to use for encoding
    """
    base = len(alphabet)
    strlen = len(string)
    num = 0

    idx = 0
    for char in string:
        power = (strlen - (idx + 1))
        num += alphabet.index(char) * (base ** power)
        idx += 1

    return num

Notice the fact that you can give it any Alphabet to use for encoding and decoding.

Hope this helps.

PS - For URL shorteners, I have found that it's better to leave out a few confusing characters like 0Ol1oI etc. Thus I use this alphabet for my URL shortening needs - "23456789abcdefghijkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"

Have fun.

link|improve this answer
3  
+1: Nice! This can be extended with more URL-friendly characters to possibly save one character here and there. Characters I know are safe are: $-_.+!*'(),;/?:@&= You can probably use some other characters too like []~ etc. – Blixt Jul 13 '09 at 14:32
Thanks, just what I was looking for :) – mikl Jul 13 '09 at 14:37
3  
base62_encode(-1) :) – wuub Jul 13 '09 at 14:42
3  
Naming bug: it's not base 62, since the alphabet is customizable. – unwind Sep 28 '09 at 14:24
1  
@ShreevatsaR: any particular reason for using str.index() instead of a dictionary lookup? See my answer ... – John Machin Oct 5 '09 at 23:47
show 6 more comments
feedback

I once wrote a script to do this aswell, I think it's quite elegant :)

import string
BASE_LIST = string.digits + string.letters + '_@'
BASE_DICT = dict((c, i) for i, c in enumerate(BASE_LIST))

def base_decode(string, reverse_base=BASE_DICT):
    length = len(reverse_base)
    ret = 0
    for i, c in enumerate(string[::-1]):
        ret += (length ** i) * reverse_base[c]

    return ret

def base_encode(integer, base=BASE_LIST):
    length = len(base)
    ret = ''
    while integer != 0:
        ret = base[integer % length] + ret
        integer /= length

    return ret

Example usage:

for i in range(100):                                    
    print i, base_decode(base_encode(i)), base_encode(i)
link|improve this answer
That is neat, thank you. I like the shortness :) – mikl Apr 2 '10 at 15:39
2  
This version is considerably faster than the accepted solution from Baishampayan. I optimized further by computing length outside of the function. Testing results (100,000 iterations): version-WoLpH: .403 .399 .399 .398 .398 | version-Baishampayan: 1.783 1.785 1.782 1.788 1.784. This version is approximately 4x as fast. – Jordan Apr 28 '11 at 13:46
feedback

The following decoder-maker works with any reasonable base, has a much tidier loop, and gives an explicit error message when it meets an invalid character.

def base_n_decoder(alphabet):
    """Return a decoder for a base-n encoded string
    Argument:
    - `alphabet`: The alphabet used for encoding
    """
    base = len(alphabet)
    char_value = dict(((c, v) for v, c in enumerate(alphabet)))
    def f(string):
        num = 0
        try:
            for char in string:
                num = num * base + char_value[char]
        except KeyError:
            raise ValueError('Unexpected character %r' % char)
        return num
    return f

if __name__ == "__main__":
    func = base_n_decoder('0123456789abcdef')
    for test in ('0', 'f', '2020', 'ffff', 'abqdef'):
        print test
        print func(test)
link|improve this answer
feedback

You probably want base64, not base62. There's an URL-compatible version of it floating around, so the extra two filler characters shouldn't be a problem.

The process is fairly simple; consider that base64 represents 6 bits and a regular byte represents 8. Assign a value from 000000 to 111111 to each of the 64 characters chosen, and put the 4 values together to match a set of 3 base256 bytes. Repeat for each set of 3 bytes, padding at the end with your choice of padding character (0 is generally useful).

link|improve this answer
3  
The standard Python base64 encoding methods are not really suitable for short URLs, since it is optimized for encoding bytes (ie. strings/letters), and will produce longer outputs than just base-shifting the numerical value. – mikl Apr 2 '10 at 15:34
@mikl Of course, Python's base64 module may not be suitable for generating short URLs, but all of Python's encoding methods are really working on base-256 number sequences. bytes are really base-256 encoded "strings". Python 2.x treats strings as a sequence of bytes, whereas Python 3.x (which does the right thing) treats strings as Unicode. So b'foobar' is really only a fancy way of writing [102, 111, 111, 98, 97, 114] or [0x66,0x6f,0x6f,0x62,0x61,0x72] or b'\x66\x6f\x6f\x62\x61\x72' which unsurprisingly is the base-256 representation. Bytes are not strings or letters. Bytes are bytes. =) – yesudeep Aug 9 '11 at 14:19
feedback

you can download zbase62 module from pypi

eg

>>> import zbase62
>>> zbase62.b2a("abcd")
'1mZPsa'
link|improve this answer
1  
Yeah, I looked at that earlier, but it converts strings, not numbers :) – mikl Jul 13 '09 at 15:11
feedback

I have a Python library for doing exactly that here: http://www.djangosnippets.org/snippets/1431/

link|improve this answer
feedback

Sorry, I can't help you with a library here. I would prefer using base64 and just adding to extra characters to your choice -- if possible!

Then you can use the base64 module.

If this is really, really not possible:

You can do it yourself this way (this is pseudo-code):

base62vals = []
myBase = 62
while num > 0:
   reminder = num % myBase
   num = num / myBase
   base62vals.insert(0, reminder)
link|improve this answer
feedback

Personally I like the solution from Baishampayan, mostly because of stripping the confusing characters.

For completeness, and solution with better performance, this post shows a way to use the Python base64 module.

link|improve this answer
1  
As mentioned in my comment to Williham Totland, Pythons base64 is suboptimal for encoding numbers, since it is optimized for strings. – mikl Apr 2 '10 at 15:37
feedback

If all you need is to generate a short ID (since you mention URL shorteners) rather than encode/decode something, this module might help:

https://github.com/stochastic-technologies/shortuuid/

link|improve this answer
I am not sure that is appropriate for short URLs. A UUID is usually a very large number, so even base57 encoding it like he does is bound to be rather long for a short URL. – mikl Jan 11 '11 at 14:55
You can just cut as much as you want, collisions will still be unlikely as it's purely random, but won't be a unique id any more. – Stavros Korokithakis Jan 21 '11 at 23:09
feedback

I have benefited greatly from others' posts here. I needed the python code originally for a Django project, but since then I have turned to node.js, so here's a javascript version of the code (the encoding part) that Baishampayan Ghose provided.

var ALPHABET = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";

function base62_encode(n, alpha) {
  var num = n || 0;
  var alphabet = alpha || ALPHABET;

  if (num == 0) return alphabet[0];
  var arr = [];
  var base = alphabet.length;

  while(num) {
    rem = num % base;
    num = (num - rem)/base;
    arr.push(alphabet.substring(rem,rem+1));
  }

  return arr.reverse().join('');
}

console.log(base62_encode(2390687438976, "123456789ABCDEFGHIJKLMNPQRSTUVWXYZ"));
link|improve this answer
feedback

I wrote this a while back and it's worked pretty well (negatives and all included)

def code(number,base):
    try:
        int(number),int(base)
    except ValueError:
        raise ValueError('code(number,base): number and base must be in base10')
    else:
        number,base = int(number),int(base)
    if base < 2:
        base = 2
    if base > 62:
        base = 62
    numbers = [0,1,2,3,4,5,6,7,8,9,"a","b","c","d","e","f","g","h","i","j",
               "k","l","m","n","o","p","q","r","s","t","u","v","w","x","y",
               "z","A","B","C","D","E","F","G","H","I","J","K","L","M","N",
               "O","P","Q","R","S","T","U","V","W","X","Y","Z"]
    final = ""
    loc = 0
    if number < 0:
        final = "-"
        number = abs(number)
    while base**loc <= number:
        loc = loc + 1
    for x in range(loc-1,-1,-1):
        for y in range(base-1,-1,-1):
            if y*(base**x) <= number:
                final = "{}{}".format(final,numbers[y])
                number = number - y*(base**x)
                break
    return final

def decode(number,base):
    try:
        int(base)
    except ValueError:
        raise ValueError('decode(value,base): base must be in base10')
    else:
        base = int(base)
    number = str(number)
    if base < 2:
        base = 2
    if base > 62:
        base = 62
    numbers = ["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f",
               "g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v",
               "w","x","y","z","A","B","C","D","E","F","G","H","I","J","K","L",
               "M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"]
    final = 0
    if number.startswith("-"):
        neg = True
        number = list(number)
        del(number[0])
        temp = number
        number = ""
        for x in temp:
            number = "{}{}".format(number,x)
    else:
        neg = False
    loc = len(number)-1
    number = str(number)
    for x in number:
        if numbers.index(x) > base:
            raise ValueError('{} is out of base{} range'.format(x,str(base)))
        final = final+(numbers.index(x)*(base**loc))
        loc = loc - 1
    if neg:
        return -final
    else:
        return final

sorry about the length of it all

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.