2016-03-30 18:31:23 +00:00
|
|
|
#--require-config wolframalpha-api-key
|
2018-09-02 08:28:55 +00:00
|
|
|
import json
|
2018-10-03 12:22:37 +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-10-10 09:42:41 +00:00
|
|
|
@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):
|
2018-09-26 17:27:17 +00:00
|
|
|
"""
|
2018-09-30 16:29:09 +00:00
|
|
|
:help: Evauate a given string on Wolfram|Alpha
|
|
|
|
:usage: <query>
|
2018-09-26 17:27:17 +00:00
|
|
|
"""
|
2018-12-12 11:16:45 +00:00
|
|
|
page = utils.http.request(URL_WA,
|
2018-10-03 12:22:37 +00:00
|
|
|
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-12-11 22:26:38 +00:00
|
|
|
if page:
|
|
|
|
if page.code == 200:
|
|
|
|
event["stdout"].write("%s: %s" % (event["args"], page.data))
|
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:
|
2018-10-20 19:51:29 +00:00
|
|
|
raise utils.EventsResultsError()
|