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
- Host: GitHub
- URL: https://github.com/jali/python-url-shortener
- Owner: jali
- Created: 2015-03-24T16:50:53.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-25T10:03:25.000Z (about 10 years ago)
- Last Synced: 2025-02-15T22:13:53.514Z (3 months ago)
- Topics: base60, newbase60, python, url-shortener
- Language: Python
- Size: 117 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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
```