1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
info = {
'author': 'Jon Bergli Heier',
'title': 'WolframAlpha',
'description': 'WolframAlpha',
}
import urllib, urllib2, re
from xml.etree.ElementTree import ElementTree
whitespace_re = re.compile(r'\s+')
class Module(object):
config_section = 'module/wolframalpha'
def __init__(self, bot):
self.irc = bot
if self.irc:
self.irc.register_keyword('!wa', self)
def keyword(self, nick, channel, kw, msg):
target = channel if not channel == self.irc.nickname else nick.split('!')[0]
if not len(msg.strip()):
self.irc.msg(target, 'Usage: !wa query')
return
query = {
'appid': config.get(self.config_section, 'api_key'),
'format': 'plaintext',
'input': msg,
}
if config.has_option(self.config_section, 'location'):
query['location'] = config.get(self.config_section, 'location')
u = urllib2.urlopen('http://api.wolframalpha.com/v2/query?%s' % urllib.urlencode(query))
xmldoc = ElementTree()
xmldoc.parse(u)
xml = xmldoc.getroot()
if xml.attrib['success'] != 'true':
# TODO: check didyoumean tags
self.irc.msg(target, 'No result.')
return
results = []
for pod in xml.findall('pod'):
#if pod.attrib['id'] == 'Result':
result = pod.find('subpod/plaintext')
if result is not None and result.text is not None:
text = result.text
text = whitespace_re.sub(' ', text)
results.append('\002%s\002: %s' % (pod.attrib['title'].encode('utf-8'), text.encode('utf-8')))
if len(results):
self.irc.msg(target, ' '.join(results))
else:
self.irc.msg(target, 'Something failed.')
|