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

16 lines
308 B
Python
Raw Normal View History

2012-03-23 01:32:48 +01:00
# Plugin by Lukeroge
2012-04-21 05:55:52 +02:00
from util import hook
from urllib2 import HTTPError
from util.web import isgd
2011-11-20 10:23:31 +01:00
2012-03-23 01:32:48 +01:00
2011-11-20 10:23:31 +01:00
@hook.command
def shorten(inp):
"shorten <url> - Makes an is.gd shortlink to the url provided."
2012-04-21 05:57:05 +02:00
2012-04-21 05:55:52 +02:00
try:
return isgd(inp)
except (HTTPError):
2012-04-21 05:57:05 +02:00
return "Could not shorten '%s'!" % inp