searx/searx/engines/currency_convert.py

55 lines
1.4 KiB
Python
Raw Normal View History

# SPDX-License-Identifier: AGPL-3.0-or-later
"""
currency convert (DuckDuckGo)
"""
2016-11-30 18:43:03 +01:00
import json
# about
about = {
"website": 'https://duckduckgo.com/',
"wikidata_id": 'Q12805',
"official_api_documentation": 'https://duckduckgo.com/api',
"use_official_api": False,
"require_api_key": False,
"results": 'JSONP',
}
2013-11-04 21:47:16 +01:00
engine_type = 'online_currency'
2013-11-04 21:47:16 +01:00
categories = []
url = 'https://duckduckgo.com/js/spice/currency/1/{0}/{1}'
weight = 100
2013-11-04 21:47:16 +01:00
https_support = True
2013-11-04 21:47:16 +01:00
def request(query, params):
params['url'] = url.format(params['from'], params['to'])
2013-11-04 21:47:16 +01:00
return params
def response(resp):
"""remove first and last lines to get only json"""
2018-04-22 13:12:32 +02:00
json_resp = resp.text[resp.text.find('\n') + 1:resp.text.rfind('\n') - 2]
2013-11-04 21:47:16 +01:00
results = []
try:
conversion_rate = float(json.loads(json_resp)['conversion']['converted-amount'])
2013-11-04 21:47:16 +01:00
except:
return results
answer = '{0} {1} = {2} {3}, 1 {1} ({5}) = {4} {3} ({6})'.format(
2017-11-07 15:14:20 +01:00
resp.search_params['amount'],
resp.search_params['from'],
2017-11-07 15:14:20 +01:00
resp.search_params['amount'] * conversion_rate,
resp.search_params['to'],
conversion_rate,
resp.search_params['from_name'],
resp.search_params['to_name'],
)
2013-11-04 21:47:16 +01:00
url = 'https://duckduckgo.com/js/spice/currency/1/{0}/{1}'.format(
2017-11-07 14:29:17 +01:00
resp.search_params['from'].upper(), resp.search_params['to'])
2014-09-28 16:51:41 +02:00
results.append({'answer': answer, 'url': url})
2013-11-04 21:47:16 +01:00
return results