2016-02-28 01:06:44 +00:00
|
|
|
# Wolfram|Alpha (Science)
|
2015-12-30 02:59:51 +00:00
|
|
|
#
|
2016-02-28 01:06:44 +00:00
|
|
|
# @website https://www.wolframalpha.com/
|
|
|
|
# @provide-api yes (https://api.wolframalpha.com/v2/)
|
2015-12-30 02:59:51 +00:00
|
|
|
#
|
|
|
|
# @using-api no
|
2016-02-28 01:06:44 +00:00
|
|
|
# @results JSON
|
2015-12-30 02:59:51 +00:00
|
|
|
# @stable no
|
2016-02-28 01:06:44 +00:00
|
|
|
# @parse url, infobox
|
2015-12-30 02:59:51 +00:00
|
|
|
|
2016-07-07 23:41:33 +00:00
|
|
|
from cgi import escape
|
2015-12-30 06:53:15 +00:00
|
|
|
from json import loads
|
2016-02-17 16:07:19 +00:00
|
|
|
from time import time
|
2015-12-30 02:59:51 +00:00
|
|
|
from urllib import urlencode
|
2016-07-07 23:41:33 +00:00
|
|
|
from lxml.etree import XML
|
2016-02-17 16:07:19 +00:00
|
|
|
|
|
|
|
from searx.poolrequests import get as http_get
|
2015-12-30 02:59:51 +00:00
|
|
|
|
|
|
|
# search-url
|
2016-02-17 16:07:19 +00:00
|
|
|
url = 'https://www.wolframalpha.com/'
|
2016-01-02 07:49:32 +00:00
|
|
|
|
2016-02-17 16:07:19 +00:00
|
|
|
search_url = url + 'input/json.jsp'\
|
2016-02-28 08:05:52 +00:00
|
|
|
'?async=false'\
|
2016-02-17 16:07:19 +00:00
|
|
|
'&banners=raw'\
|
|
|
|
'&debuggingdata=false'\
|
|
|
|
'&format=image,plaintext,imagemap,minput,moutput'\
|
|
|
|
'&formattimeout=2'\
|
|
|
|
'&{query}'\
|
|
|
|
'&output=JSON'\
|
|
|
|
'&parsetimeout=2'\
|
|
|
|
'&proxycode={token}'\
|
|
|
|
'&scantimeout=0.5'\
|
|
|
|
'&sponsorcategories=true'\
|
|
|
|
'&statemethod=deploybutton'
|
|
|
|
|
2016-02-28 01:06:44 +00:00
|
|
|
referer_url = url + 'input/?{query}'
|
|
|
|
|
2016-02-17 16:07:19 +00:00
|
|
|
token = {'value': '',
|
2016-07-07 23:41:33 +00:00
|
|
|
'last_updated': None}
|
2016-02-17 16:07:19 +00:00
|
|
|
|
2016-02-28 01:06:44 +00:00
|
|
|
# pods to display as image in infobox
|
|
|
|
# this pods do return a plaintext, but they look better and are more useful as images
|
2016-02-28 06:47:36 +00:00
|
|
|
image_pods = {'VisualRepresentation',
|
|
|
|
'Illustration',
|
2016-02-28 01:06:44 +00:00
|
|
|
'Symbol'}
|
|
|
|
|
2016-02-17 16:07:19 +00:00
|
|
|
|
|
|
|
# seems, wolframalpha resets its token in every hour
|
|
|
|
def obtain_token():
|
|
|
|
update_time = time() - (time() % 3600)
|
2016-02-17 16:21:54 +00:00
|
|
|
try:
|
|
|
|
token_response = http_get('https://www.wolframalpha.com/input/api/v1/code?ts=9999999999999999999', timeout=2.0)
|
|
|
|
token['value'] = loads(token_response.text)['code']
|
|
|
|
token['last_updated'] = update_time
|
|
|
|
except:
|
|
|
|
pass
|
2016-02-17 16:07:19 +00:00
|
|
|
return token
|
|
|
|
|
|
|
|
|
|
|
|
obtain_token()
|
2015-12-30 02:59:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
# do search-request
|
|
|
|
def request(query, params):
|
2016-02-17 16:07:19 +00:00
|
|
|
# obtain token if last update was more than an hour
|
|
|
|
if time() - token['last_updated'] > 3600:
|
|
|
|
obtain_token()
|
|
|
|
params['url'] = search_url.format(query=urlencode({'input': query}), token=token['value'])
|
2016-02-28 01:06:44 +00:00
|
|
|
params['headers']['Referer'] = referer_url.format(query=urlencode({'i': query}))
|
2015-12-30 02:59:51 +00:00
|
|
|
|
|
|
|
return params
|
|
|
|
|
|
|
|
|
2015-12-30 03:11:49 +00:00
|
|
|
# get response from search-request
|
|
|
|
def response(resp):
|
2016-02-28 01:06:44 +00:00
|
|
|
results = []
|
|
|
|
|
2016-02-17 16:07:19 +00:00
|
|
|
resp_json = loads(resp.text)
|
|
|
|
|
|
|
|
if not resp_json['queryresult']['success']:
|
|
|
|
return []
|
|
|
|
|
|
|
|
# TODO handle resp_json['queryresult']['assumptions']
|
|
|
|
result_chunks = []
|
2016-07-07 23:41:33 +00:00
|
|
|
infobox_title = ""
|
|
|
|
result_content = ""
|
2016-02-17 16:07:19 +00:00
|
|
|
for pod in resp_json['queryresult']['pods']:
|
2016-02-28 06:47:36 +00:00
|
|
|
pod_id = pod.get('id', '')
|
2016-02-17 16:07:19 +00:00
|
|
|
pod_title = pod.get('title', '')
|
2016-07-06 22:29:40 +00:00
|
|
|
pod_is_result = pod.get('primary', None)
|
2016-02-28 01:06:44 +00:00
|
|
|
|
2016-02-17 16:07:19 +00:00
|
|
|
if 'subpods' not in pod:
|
2016-02-28 08:05:52 +00:00
|
|
|
continue
|
2016-02-28 01:06:44 +00:00
|
|
|
|
2016-02-28 06:47:36 +00:00
|
|
|
if pod_id == 'Input' or not infobox_title:
|
|
|
|
infobox_title = pod['subpods'][0]['plaintext']
|
2016-02-28 01:06:44 +00:00
|
|
|
|
2016-02-17 16:07:19 +00:00
|
|
|
for subpod in pod['subpods']:
|
2016-02-28 06:47:36 +00:00
|
|
|
if subpod['plaintext'] != '' and pod_id not in image_pods:
|
2016-02-28 01:06:44 +00:00
|
|
|
# append unless it's not an actual answer
|
|
|
|
if subpod['plaintext'] != '(requires interactivity)':
|
|
|
|
result_chunks.append({'label': pod_title, 'value': subpod['plaintext']})
|
|
|
|
|
2016-07-07 23:41:33 +00:00
|
|
|
if pod_is_result or not result_content:
|
|
|
|
if pod_id != "Input":
|
|
|
|
result_content = pod_title + ': ' + subpod['plaintext']
|
2016-07-06 22:29:40 +00:00
|
|
|
|
2016-02-28 01:06:44 +00:00
|
|
|
elif 'img' in subpod:
|
|
|
|
result_chunks.append({'label': pod_title, 'image': subpod['img']})
|
2016-02-17 16:07:19 +00:00
|
|
|
|
|
|
|
if not result_chunks:
|
|
|
|
return []
|
|
|
|
|
2016-02-28 01:06:44 +00:00
|
|
|
results.append({'infobox': infobox_title,
|
|
|
|
'attributes': result_chunks,
|
2016-02-28 06:52:47 +00:00
|
|
|
'urls': [{'title': 'Wolfram|Alpha', 'url': resp.request.headers['Referer'].decode('utf8')}]})
|
2016-02-28 01:06:44 +00:00
|
|
|
|
2016-02-28 06:52:47 +00:00
|
|
|
results.append({'url': resp.request.headers['Referer'].decode('utf8'),
|
2016-07-07 23:41:33 +00:00
|
|
|
'title': 'Wolfram|Alpha (' + infobox_title + ')',
|
|
|
|
'content': result_content})
|
2016-02-28 01:06:44 +00:00
|
|
|
|
|
|
|
return results
|