Just a small python class for a base60 URL shortener
I'm removing uppercase i, o and lowercase L to prevent confusion when reading the short url.
from shortener import Shortener
short = Shortener()
s = short.shorten('http://google.com')
print s
l = short.expand(s)
print l