show/hide this revision's text 3 change sign character to URL-safe one

This answer is similar in spirit to Douglas Leeder's, with the following changes:

  • It doesn't use actual Base64, so there's no padding characters
  • Instead of converting the number first to a byte-string (base 256), it converts it directly to base 64, which has the advantage of letting you represent negative numbers using a sign character.

    import string
    ALPHABET = string.ascii_uppercase + string.ascii_lowercase + \
               string.digits + '-_'
    ALPHABET_REVERSE = dict((c, i) for (i, c) in enumerate(ALPHABET))
    BASE = len(ALPHABET)
    SIGN_CHARACTER = '='
    
    
    $'
    
    
    def num_encode(n):
        if n < 0:
            return SIGN_CHARACTER + num_encode(-n):
        s = []
        while True:
            n, r = divmod(n, BASE)
            s.append(ALPHABET[r])
            if n == 0: break
        return ''.join(reversed(s))
    
    
    def num_decode(s):
        if s[0] == SIGN_CHARACTER:
            return -num_decode(s[1:])
        n = 0
        for c in s:
            n = n * BASE + ALPHABET_REVERSE[c]
        return n
    


    >>> num_encode(0)
    'A'
    >>> num_encode(64)
    'BA'
    >>> num_encode(-(64**5-1))
    '=_____'
$_____'


A few side notes:

  • You could (marginally) increase the human-readibility of the base-64 numbers by putting string.digits first in the alphabet (and making the sign character '-'); I chose the order that I did based on Python's urlsafe_b64encode.
  • If you're encoding a lot of negative numbers, you could increase the efficiency by using a sign bit or one's/two's complement instead of a sign character.
  • You should be able to easily adapt this code to different bases by changing the alphabet, either to restrict it to only alphanumeric characters or to add additional "URL-safe" characters.
  • I would recommend against using a representation other than base 10 in URIs in most cases—it adds complexity and makes debugging harder without significant savings compared to the overhead of HTTP—unless you're going for something TinyURL-esque.
show/hide this revision's text 2 shorten code, add notes
BASE = len(ALPHABET)def base64encode(n)num_encode(n): s = [] n = -n neg = True elsereturn SIGN_CHARACTER + num_encode(-n): neg s = False [] n, r = divmod(n, 64BASE) if neg: s.append(SIGN_CHARACTER) s.reverse()def base64decode(s)num_decode(s): neg = True s = s[1:] else: neg = False return -num_decode(s[1:]) n *= 64 n * BASE + = ALPHABET_REVERSE[c] if neg: n = -n
    >>> base64encode(0num_encode(0)    >>> base64encode(64num_encode(64)    >>> base64encode(-(64**5-1)num_encode(-(64**5-1))

A few side notes:

  • You could (marginally) increase the human-readibility of the base-64 numbers by putting string.digits first in the alphabet (and making the sign character '-'); I chose the order that I did based on Python's urlsafe_b64encode.
  • If you're encoding a lot of negative numbers, you could increase the efficiency by using a sign bit or one's/two's complement instead of a sign character.
  • You should be able to easily adapt this code to different bases by changing the alphabet, either to restrict it to only alphanumeric characters or to add additional "URL-safe" characters.
  • I would recommend against using a representation other than base 10 in URIs in most cases—it adds complexity and makes debugging harder without significant savings compared to the overhead of HTTP—unless you're going for something TinyURL-esque.
  • show/hide this revision's text 1

    This answer is similar in spirit to Douglas Leeder's, with the following changes:

    • It doesn't use actual Base64, so there's no padding characters
    • Instead of converting the number first to a byte-string (base 256), it converts it directly to base 64, which has the advantage of letting you represent negative numbers using a sign character.

      import string
      ALPHABET = string.ascii_uppercase + string.ascii_lowercase + \
                 string.digits + '-_'
      ALPHABET_REVERSE = dict((c, i) for (i, c) in enumerate(ALPHABET))
      SIGN_CHARACTER = '='
      
      
      def base64encode(n):
          s = []
          if n < 0:
              n = -n
              neg = True
          else:
              neg = False
          while True:
              n, r = divmod(n, 64)
              s.append(ALPHABET[r])
              if n == 0: break
          if neg:
              s.append(SIGN_CHARACTER)
          s.reverse()
          return ''.join(s)
      
      
      def base64decode(s):
          if s[0] == SIGN_CHARACTER:
              neg = True
              s = s[1:]
          else:
              neg = False
          n = 0
          for c in s:
              n *= 64
              n += ALPHABET_REVERSE[c]
          if neg:
              n = -n
          return n
      


        >>> base64encode(0)
        'A'
        >>> base64encode(64)
        'BA'
        >>> base64encode(-(64**5-1))
        '=_____'