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/gcalc.py
2012-12-10 01:59:33 +13:00

16 lines
346 B
Python
Executable file

from util import hook, http
@hook.command("math")
@hook.command
def calc(inp):
"calc <term> -- Calculate <term> with Google Calc."
soup = http.get_soup('http://www.google.com/search', q=inp)
result = soup.find('h2', {'class': 'r'})
if not result:
return "Could not calculate '%s'" % inp
return result.contents[0]