bitbot-3.11-fork/modules/wolframalpha.py

29 lines
947 B
Python
Raw Normal View History

#--require-config wolframalpha-api-key
import json
from src import ModuleManager, utils
2016-03-29 11:56:58 +00:00
URL_WA = "https://api.wolframalpha.com/v1/result"
2016-03-29 11:56:58 +00:00
class Module(ModuleManager.BaseModule):
2016-03-29 11:56:58 +00:00
_name = "Wolfram|Alpha"
@utils.hook("received.command.wa", alias_of="wolframalpha")
@utils.hook("received.command.wolframalpha", min_args=1)
2016-03-29 11:56:58 +00:00
def wa(self, event):
"""
:help: Evauate a given string on Wolfram|Alpha
:usage: <query>
"""
code, result = utils.http.get_url(URL_WA,
get_params={"i": event["args"],
2016-03-29 11:56:58 +00:00
"appid": self.bot.config["wolframalpha-api-key"],
"reinterpret": "true", "units": "metric"}, code=True)
2016-03-29 11:56:58 +00:00
if not result == None:
if code == 200:
event["stdout"].write("%s: %s" % (event["args"], result))
2016-03-29 11:56:58 +00:00
else:
event["stdout"].write("No results")
2016-03-29 11:56:58 +00:00
else:
raise utils.EventsResultsError()