ddg: Add link to results page
parent
bfb26c32d6
commit
5cfdd0e41c
|
@ -34,10 +34,11 @@ def ddg(phenny, input, celsius=False):
|
||||||
return phenny.reply(".ddg what?")
|
return phenny.reply(".ddg what?")
|
||||||
|
|
||||||
uri = result(query)
|
uri = result(query)
|
||||||
|
resultsuri = "https://duckduckgo.com/?q=" + web.urllib.quote(query.encode('utf-8'))
|
||||||
if uri:
|
if uri:
|
||||||
phenny.reply("%s - Results from https://duckduckgo.com/" % uri)
|
phenny.reply("%s - Results from %s" % (uri, resultsuri))
|
||||||
else:
|
else:
|
||||||
phenny.reply("No results found for '%s'." % query)
|
phenny.reply("No results found for '%s'; try %s" % (query, resultsuri))
|
||||||
ddg.rule = (['ddg'], r'(.*)')
|
ddg.rule = (['ddg'], r'(.*)')
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
Loading…
Reference in New Issue