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/lmgtfy.py

15 lines
335 B
Python
Raw Normal View History

2012-09-05 07:52:03 +12:00
from util import hook, web, http
2012-08-28 00:22:03 +12:00
@hook.command('gfy')
@hook.command
2013-09-04 18:30:04 +08:00
def lmgtfy(inp):
"""lmgtfy [phrase] - Posts a google link for the specified phrase"""
2012-08-28 00:22:03 +12:00
2013-09-27 20:48:01 +12:00
link = u"http://lmgtfy.com/?q={}".format(http.quote_plus(inp))
try:
return web.isgd(link)
except (web.ShortenError, http.HTTPError):
return link