This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/plugins/shorten.py
2012-08-28 16:38:40 +12:00

16 lines
308 B
Python
Executable file

# Plugin by Lukeroge
from util import hook
from urllib2 import HTTPError
from util.web import isgd
@hook.command
def shorten(inp):
"shorten <url> - Makes an is.gd shortlink to the url provided."
try:
return isgd(inp)
except (HTTPError):
return "Could not shorten '%s'!" % inp