2021-01-13 10:31:25 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
"""
|
|
|
|
currency convert (DuckDuckGo)
|
|
|
|
"""
|
|
|
|
|
2016-11-30 17:43:03 +00:00
|
|
|
import json
|
2020-10-05 11:50:33 +00:00
|
|
|
|
2021-01-13 10:31:25 +00:00
|
|
|
# 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 20:47:16 +00:00
|
|
|
|
2020-12-16 15:20:03 +00:00
|
|
|
engine_type = 'online_currency'
|
2013-11-04 20:47:16 +00:00
|
|
|
categories = []
|
2018-04-22 10:46:13 +00:00
|
|
|
url = 'https://duckduckgo.com/js/spice/currency/1/{0}/{1}'
|
2013-11-10 20:20:22 +00:00
|
|
|
weight = 100
|
2013-11-04 20:47:16 +00:00
|
|
|
|
2020-12-09 16:33:18 +00:00
|
|
|
https_support = True
|
2015-05-12 18:52:08 +00:00
|
|
|
|
|
|
|
|
2013-11-04 20:47:16 +00:00
|
|
|
def request(query, params):
|
2020-12-16 15:20:03 +00:00
|
|
|
params['url'] = url.format(params['from'], params['to'])
|
2013-11-04 20:47:16 +00:00
|
|
|
return params
|
|
|
|
|
|
|
|
|
|
|
|
def response(resp):
|
2018-04-22 10:46:13 +00:00
|
|
|
"""remove first and last lines to get only json"""
|
2021-12-27 08:26:22 +00:00
|
|
|
json_resp = resp.text[resp.text.find('\n') + 1 : resp.text.rfind('\n') - 2]
|
2013-11-04 20:47:16 +00:00
|
|
|
results = []
|
|
|
|
try:
|
2018-04-22 10:46:13 +00:00
|
|
|
conversion_rate = float(json.loads(json_resp)['conversion']['converted-amount'])
|
2013-11-04 20:47:16 +00:00
|
|
|
except:
|
|
|
|
return results
|
2015-05-12 18:52:08 +00:00
|
|
|
answer = '{0} {1} = {2} {3}, 1 {1} ({5}) = {4} {3} ({6})'.format(
|
2017-11-07 14:14:20 +00:00
|
|
|
resp.search_params['amount'],
|
2014-01-19 21:59:01 +00:00
|
|
|
resp.search_params['from'],
|
2017-11-07 14:14:20 +00:00
|
|
|
resp.search_params['amount'] * conversion_rate,
|
2014-01-19 21:59:01 +00:00
|
|
|
resp.search_params['to'],
|
2015-05-12 18:52:08 +00:00
|
|
|
conversion_rate,
|
|
|
|
resp.search_params['from_name'],
|
|
|
|
resp.search_params['to_name'],
|
2014-01-19 21:59:01 +00:00
|
|
|
)
|
2013-11-04 20:47:16 +00:00
|
|
|
|
2018-04-22 10:46:13 +00:00
|
|
|
url = 'https://duckduckgo.com/js/spice/currency/1/{0}/{1}'.format(
|
2021-12-27 08:26:22 +00:00
|
|
|
resp.search_params['from'].upper(), resp.search_params['to']
|
|
|
|
)
|
2014-09-28 14:51:41 +00:00
|
|
|
|
2014-12-07 15:37:56 +00:00
|
|
|
results.append({'answer': answer, 'url': url})
|
2013-11-04 20:47:16 +00:00
|
|
|
|
|
|
|
return results
|