How to convert an integer to the shortest url-safe string in Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T23:16:31Z http://stackoverflow.com/feeds/question/561486 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/561486/how-to-convert-an-integer-to-the-shortest-url-safe-string-in-python 8 How to convert an integer to the shortest url-safe string in Python? Simon Willison 2009-02-18T15:25:25Z 2009-06-24T21:05:16Z <p>I want the shortest possible way of representing an integer in a URL. For example, 11234 can be shortened to '2be2' using hexadecimal. Since base64 uses is a 64 character encoding, it should be possible to represent an integer in base64 using even less characters than hexadecimal. The problem is I can't figure out the cleanest way to convert an integer to base64 (and back again) using Python.</p> <p>The base64 module has methods for dealing with bytestrings - so maybe one solution would be to convert an integer to its binary representation as a Python string... but I'm not sure how to do that either.</p> http://stackoverflow.com/questions/561486/how-to-convert-an-integer-to-the-shortest-url-safe-string-in-python/561493#561493 0 Answer by Jorenko for How to convert an integer to the shortest url-safe string in Python? Jorenko 2009-02-18T15:27:18Z 2009-06-24T21:05:16Z <p>I'd go the 'encode integer as binary string, then base64 encode that' method you suggest, and I'd do it using struct:</p> <pre><code>&gt;&gt;&gt; import struct, base64 &gt;&gt;&gt; base64.b64encode(struct.pack('l', 47)) 'LwAAAA==' &gt;&gt;&gt; struct.unpack('l', base64.b64decode(_)) (47,) </code></pre> <p>Edit again: To strip out the extra 0s on numbers that are too small to need full 32-bit precision, try this:</p> <pre><code>def pad(str, l=4): while len(str) &lt; l: str = '\x00' + str return str &gt;&gt;&gt; base64.b64encode(struct.pack('!l', 47).replace('\x00', '')) 'Lw==' &gt;&gt;&gt; struct.unpack('!l', pad(base64.b64decode('Lw=='))) (47,) </code></pre> http://stackoverflow.com/questions/561486/how-to-convert-an-integer-to-the-shortest-url-safe-string-in-python/561534#561534 2 Answer by Joachim Sauer for How to convert an integer to the shortest url-safe string in Python? Joachim Sauer 2009-02-18T15:33:18Z 2009-02-18T15:33:18Z <p>Base64 takes 4 bytes/characters to encode 3 bytes and can only encode multiples of 3 bytes (and adds padding otherwise).</p> <p>So representing 4 bytes (your average int) in Base64 would take 8 bytes. Encoding the same 4 bytes in hex would also take 8 bytes. So you wouldn't gain anything for a single int.</p> http://stackoverflow.com/questions/561486/how-to-convert-an-integer-to-the-shortest-url-safe-string-in-python/561547#561547 1 Answer by umnik700 for How to convert an integer to the shortest url-safe string in Python? umnik700 2009-02-18T15:35:18Z 2009-02-18T15:35:18Z <p>If you are looking for a way to <em>shorten</em> the integer representation using base64, I think you need to look elsewhere. When you encode something with base64 it doesn't get shorter, in fact it gets longer. </p> <p>E.g. 11234 encoded with base64 would yield MTEyMzQ=</p> <p>When using base64 you have overlooked the fact that you are not converting just the digits (0-9) to a 64 character encoding. You are converting 3 bytes into 4 bytes so you are guaranteed your base64 encoded string would be 33.33% longer.</p> http://stackoverflow.com/questions/561486/how-to-convert-an-integer-to-the-shortest-url-safe-string-in-python/561630#561630 4 Answer by Øystein E. Krog for How to convert an integer to the shortest url-safe string in Python? Øystein E. Krog 2009-02-18T15:48:31Z 2009-02-18T15:58:37Z <p>You don't want base64 encoding, you want to represent a base 10 numeral in numeral base X.</p> <p>If you want your base 10 numeral represented in the 26 letters available you could use: <a href="http://en.wikipedia.org/wiki/Hexavigesimal" rel="nofollow">http://en.wikipedia.org/wiki/Hexavigesimal</a>. (You can extend that example for a much larger base by using all the legal url characters)</p> <p>You should atleast be able to get base 38 (26 letters, 10 numbers, +, _)</p> http://stackoverflow.com/questions/561486/how-to-convert-an-integer-to-the-shortest-url-safe-string-in-python/561631#561631 3 Answer by Douglas Leeder for How to convert an integer to the shortest url-safe string in Python? Douglas Leeder 2009-02-18T15:48:31Z 2009-02-18T15:54:52Z <p>The easy bit is converting the byte string to web-safe base64:</p> <pre><code>import base64 output = base64.urlsafe_b64encode(s) </code></pre> <p>The tricky bit is the first step - convert the integer to a byte string.</p> <p>If your integers are small you're better off hex encoding them - see <a href="http://stackoverflow.com/questions/561486/how-do-you-base64-encode-an-integer-in-python/561534#561534">saua</a></p> <p>Otherwise (hacky recursive version):</p> <pre><code>def convertIntToByteString(i): if i == 0: return "" else: return convertIntToByteString(i &gt;&gt; 8) + chr(i &amp; 255) </code></pre> http://stackoverflow.com/questions/561486/how-to-convert-an-integer-to-the-shortest-url-safe-string-in-python/561704#561704 12 Answer by Miles for How to convert an integer to the shortest url-safe string in Python? Miles 2009-02-18T16:00:18Z 2009-02-18T18:06:00Z <p>This answer is similar in spirit to Douglas Leeder's, with the following changes:</p> <ul> <li>It doesn't use actual Base64, so there's no padding characters</li> <li><p>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.</p> <pre><code>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 &lt; 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 </code></pre></li> </ul> <p><hr /></p> <pre><code> &gt;&gt;&gt; num_encode(0) 'A' &gt;&gt;&gt; num_encode(64) 'BA' &gt;&gt;&gt; num_encode(-(64**5-1)) '$_____' </code></pre> <p><hr /></p> <p>A few side notes:</p> <ul> <li>You could (<em>marginally</em>) 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.</li> <li>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.</li> <li>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.</li> <li>I would recommend <em>against</em> 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.</li> </ul> http://stackoverflow.com/questions/561486/how-to-convert-an-integer-to-the-shortest-url-safe-string-in-python/561799#561799 3 Answer by ʞɔıu for How to convert an integer to the shortest url-safe string in Python? ʞɔıu 2009-02-18T16:19:56Z 2009-02-18T16:19:56Z <p>a little hacky, but it works:</p> <pre><code>def b64num(num_to_encode): h = hex(num_to_encode)[2:] # hex(n) returns 0xhh, strip off the 0x h = len(h) &amp; 1 and '0'+h or h # if odd number of digits, prepend '0' which hex codec requires return h.decode('hex').encode('base64') </code></pre> <p>you could replace the call to .encode('base64') with something in the base64 module, such as urlsafe_b64encode()</p> http://stackoverflow.com/questions/561486/how-to-convert-an-integer-to-the-shortest-url-safe-string-in-python/561809#561809 4 Answer by kmkaplan for How to convert an integer to the shortest url-safe string in Python? kmkaplan 2009-02-18T16:22:44Z 2009-02-18T21:49:50Z <p>To encode <code>n</code>:</p> <pre><code>data = '' while n &gt; 0: data = chr(n &amp; 255) + data n = n &gt;&gt; 8 encoded = base64.urlsafe_b64encode(data).rstrip('=') </code></pre> <p>To decode <code>s</code>:</p> <pre><code>data = base64.urlsafe_b64decode(s + '===') decoded = 0 while len(data) &gt; 0: decoded = (decoded &lt;&lt; 8) | ord(data[0]) data = data[1:] </code></pre> <p>In the same spirit as other for some “optimal” encoding, you can use <strong>73</strong> characters according to RFC 1738 (actually 74 if you count “+” as usable):</p> <pre><code>alphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_`\"!$'()*,-." encoded = '' while n &gt; 0: n, r = divmod(n, len(alphabet)) encoded = alphabet[r] + encoded </code></pre> <p>and the decoding:</p> <pre><code>decoded = 0 while len(s) &gt; 0: decoded = decoded * len(alphabet) + alphabet.find(s[0]) s = s[1:] </code></pre> http://stackoverflow.com/questions/561486/how-to-convert-an-integer-to-the-shortest-url-safe-string-in-python/561875#561875 4 Answer by Brian for How to convert an integer to the shortest url-safe string in Python? Brian 2009-02-18T16:40:37Z 2009-02-21T22:38:14Z <p>You probably do not want real base64 encoding for this - it will add padding etc, potentially even resulting in larger strings than hex would for small numbers. If there's no need to interoperate with anything else, just use your own encoding. Eg. here's a function that will encode to any base (note the digits are actually stored least-significant first to avoid extra reverse() calls:</p> <pre><code>def make_encoder(baseString): size = len(baseString) d = dict((ch, i) for (i, ch) in enumerate(baseString)) # Map from char -&gt; value if len(d) != size: raise Exception("Duplicate characters in encoding string") def encode(x): if x==0: return baseString[0] # Only needed if don't want '' for 0 l=[] while x&gt;0: l.append(baseString[x % size]) x //= size return ''.join(l) def decode(s): return sum(d[ch] * size**i for (i,ch) in enumerate(s)) return encode, decode # Base 64 version: encode,decode = make_encoder("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/") assert decode(encode(435346456456)) == 435346456456 </code></pre> <p>This has the advantage that you can use whatever base you want, just by adding appropriate characters to the encoder's base string.</p> <p>Note that the gains for larger bases are not going to be that big however. base 64 will only reduce the size to 2/3rds of base 16 (6 bits/char instead of 4). Each doubling only adds one more bit per character. Unless you've a real need to compact things, just using hex will probably be the simplest and fastest option.</p>