This repository has been archived on 2023-04-13. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
CloudBot/disabled_stuff/shorten.py

12 lines
255 B
Python
Raw Normal View History

from util import hook, http, web
2011-11-20 22:23:31 +13:00
2012-03-23 13:32:48 +13:00
2011-11-20 22:23:31 +13:00
@hook.command
def shorten(inp):
2013-09-04 18:30:04 +08:00
"""shorten <url> - Makes an is.gd shortlink to the url provided."""
2012-04-21 15:57:05 +12:00
2012-04-21 15:55:52 +12:00
try:
return web.isgd(inp)
except (web.ShortenError, http.HTTPError) as error:
return error