bitbot-3.11-fork/modules/wolframalpha.py

34 lines
1 KiB
Python
Raw Normal View History

#--depends-on commands
#--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):
"""
2019-10-01 22:37:59 +00:00
:help: Evaluate a given string on Wolfram|Alpha
:usage: <query>
"""
try:
page = utils.http.request(URL_WA,
get_params={"i": event["args"],
"appid": self.bot.config["wolframalpha-api-key"],
"reinterpret": "true", "units": "metric"}, code=True)
except utils.http.HTTPTimeoutException:
page = None
2016-03-29 11:56:58 +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:
event["stdout"].write("No results")
2016-03-29 11:56:58 +00:00
else:
raise utils.EventsResultsError()