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

13 lines
306 B
Python
Raw Normal View History

2012-08-27 14:22:03 +02:00
from util import hook
from util.web import isgd
2012-08-27 14:22:03 +02:00
from urllib import quote_plus
@hook.command('gfy')
@hook.command
def lmgtfy(inp, bot=None):
"lmgtfy [phrase] - Posts a google link for the specified phrase"
url = "http://lmgtfy.com/?q=%s" % quote_plus(inp)
return isgd(url, api_user, api_key)