forked from Archives/searxng
[fix] pep8
This commit is contained in:
parent
51278ee0be
commit
30bfbf2e07
@ -16,7 +16,7 @@ import HTMLParser
|
|||||||
|
|
||||||
# search-url
|
# search-url
|
||||||
url = 'http://www.wolframalpha.com/'
|
url = 'http://www.wolframalpha.com/'
|
||||||
search_url = url+'input/?{query}'
|
search_url = url + 'input/?{query}'
|
||||||
|
|
||||||
# xpath variables
|
# xpath variables
|
||||||
scripts_xpath = '//script'
|
scripts_xpath = '//script'
|
||||||
@ -61,7 +61,7 @@ def response(resp):
|
|||||||
|
|
||||||
if line:
|
if line:
|
||||||
# extract answer from json
|
# extract answer from json
|
||||||
answer = line[line.find('{'):line.rfind('}')+1]
|
answer = line[line.find('{'):line.rfind('}') + 1]
|
||||||
try:
|
try:
|
||||||
answer = loads(answer)
|
answer = loads(answer)
|
||||||
except Exception:
|
except Exception:
|
||||||
|
Loading…
Reference in New Issue
Block a user