Python client for go.debian.net and deb.li URL shortening service
Full documentation is available at https://wiki.debian.org/deb.li
Python 2.6+
sudo pip install GoDebian_api
Python 3.2+
sudo pip3 install GoDebian_api
sudo is optional (used for system wide installtion, not required while using virtualenv
- Consume deb.li and go.debian.net API | URL shoretening service
- Check for IP whitelist for this service
- Add new URL against randomly generated key
- Add static URL against pre-defined KEY
- Get existing URL via KEY
- Generate preview URL
- Pure Python Module
- Works with Python 2.6+ and 3.2+
- No dependencies
>>> import GoDebian
>>> a = GoDebian.GoDebianApi()
>>> a.add_url("http://www.debian.org")
'http://go.debian.net/3xEIl'
>>> a.get_url("3xEIl")
'http://www.debian.org'
>>> a.get_preview_url("3xEIl")
'http://go.debian.net/p/3xEIl'
>>> a.add_static_url("http://harshdaftary.com", "harsh")
'http://go.debian.net/harsh'
>>>a.get_url("harsh")
'http://harshdaftary.com'