h/plugins/suggest.py

30 lines
784 B
Python
Raw Normal View History

import random
import re
from util import hook, http
2010-03-01 02:32:41 +00:00
@hook.command
2014-03-13 17:38:18 +00:00
def suggest(inp, inp_unstripped=None):
".suggest [#n] <phrase> -- gets a random/the nth suggested google search"
2010-08-30 03:35:27 +00:00
2014-03-13 17:38:18 +00:00
if inp_unstripped is not None:
inp = inp_unstripped
m = re.match('^#(\d+) (.+)$', inp)
2014-03-13 17:38:18 +00:00
num = 0
if m:
num, inp = m.groups()
num = int(num)
2014-03-13 17:38:18 +00:00
json = http.get_json('http://suggestqueries.google.com/complete/search', client='firefox', q=inp)
suggestions = json[1]
if not suggestions:
return 'no suggestions found'
2014-03-13 17:38:18 +00:00
if not num:
num = random.randint(1, len(suggestions))
if len(suggestions) + 1 <= num:
return 'only got %d suggestions' % len(suggestions)
out = suggestions[num - 1]
return '#%d: %s' % (num, out)