An open API service indexing awesome lists of open source software.

https://github.com/jali/python-url-shortener

Base60encoder for a URL shortener
https://github.com/jali/python-url-shortener

base60 newbase60 python url-shortener

Last synced: 23 days ago
JSON representation

Base60encoder for a URL shortener

Awesome Lists containing this project

README

        

# Python base60 URL shortener

Just a small python class for a base60 URL shortener

###### Why base60?

I'm removing uppercase i, o and lowercase L to prevent confusion when reading the short url.

###### In order to test this

```
from shortener import Shortener
short = Shortener()
s = short.shorten('http://google.com')
print s
l = short.expand(s)
print l
```