THIS DOC IS FOR THE UPCOMING VERSION. DO NOT USE THE EXAMPLE CODE YET! For the old usage, please refer to this comment

pyshorteners
A simple URL shortening Python Lib, implementing the most famous shorteners.
Installing
pip install pyshorteners
Testing
make test
Usage
Simple example
import pyshorteners
s = pyshorteners.Shortener()
print(s.tinyurl.short('www.google.com'))
# prints 'http://tinyurl.com/HASH'Currently Available Shorteners
- adfly
- bitly
- chilpit
- clckru
- dagd
- isgd
- osdb
- owly
- qpsru
- post
- soogd
- tinycc
- tinyurl
Please checkout the docs for more info and examples on how to use them.
