2016-03-30 18:31:23 +00:00
|
|
|
#--require-config wolframalpha-api-key
|
2018-09-02 08:28:55 +00:00
|
|
|
import json
|
2018-09-27 10:46:10 +00:00
|
|
|
from src import ModuleManager, Utils
|
2016-03-29 11:56:58 +00:00
|
|
|
|
2018-09-02 08:28:55 +00:00
|
|
|
URL_WA = "https://api.wolframalpha.com/v1/result"
|
2016-03-29 11:56:58 +00:00
|
|
|
|
2018-09-27 10:46:10 +00:00
|
|
|
class Module(ModuleManager.BaseModule):
|
2016-03-29 11:56:58 +00:00
|
|
|
_name = "Wolfram|Alpha"
|
|
|
|
|
2018-09-26 17:27:17 +00:00
|
|
|
@Utils.hook("received.command.wolframalpha|wa", min_args=1, usage="<query>")
|
2016-03-29 11:56:58 +00:00
|
|
|
def wa(self, event):
|
2018-09-26 17:27:17 +00:00
|
|
|
"""
|
|
|
|
Evauate a given string on Wolfram|Alpha
|
|
|
|
"""
|
2018-09-02 08:28:55 +00:00
|
|
|
code, result = Utils.get_url(URL_WA, get_params={"i": event["args"],
|
2016-03-29 11:56:58 +00:00
|
|
|
"appid": self.bot.config["wolframalpha-api-key"],
|
2018-09-02 08:28:55 +00:00
|
|
|
"reinterpret": "true", "units": "metric"}, code=True)
|
2016-03-29 11:56:58 +00:00
|
|
|
|
2018-09-02 08:28:55 +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:
|
2018-09-02 08:28:55 +00:00
|
|
|
event["stdout"].write("No results")
|
2016-03-29 11:56:58 +00:00
|
|
|
else:
|
|
|
|
event["stderr"].write("Failed to load results")
|