mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-02-19 23:20:57 +01:00
Added lucky command.
This commit is contained in:
parent
79db100b31
commit
cc193c39ea
@ -211,6 +211,18 @@ class Google(callbacks.PrivmsgCommandAndRegexp):
|
|||||||
else:
|
else:
|
||||||
return '%s: %s' % (time, '; '.join(results))
|
return '%s: %s' % (time, '; '.join(results))
|
||||||
|
|
||||||
|
def lucky(self, irc, msg, args):
|
||||||
|
"""<search>
|
||||||
|
|
||||||
|
Does a google search, but only returns the first result.
|
||||||
|
"""
|
||||||
|
data = search(self.log, args)
|
||||||
|
if data.results:
|
||||||
|
url = data.results[0].URL
|
||||||
|
irc.reply(url)
|
||||||
|
else:
|
||||||
|
irc.reply('Google found nothing.')
|
||||||
|
|
||||||
def google(self, irc, msg, args):
|
def google(self, irc, msg, args):
|
||||||
"""<search> [--{language,restrict}=<value>] [--{notsafe,similar}]
|
"""<search> [--{language,restrict}=<value>] [--{notsafe,similar}]
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user