mirror of
				https://github.com/searxng/searxng.git
				synced 2025-11-03 19:17:07 -05:00 
			
		
		
		
	To reduce the memory footprint, this patch no longer loads the JSON data completely into memory. Instead, there is an SQL database based on `ExpireCacheSQLite`. The class CurrenciesDB is a simple DB application that encapsulates the DB (queries and initialization) and provides convenient methods like `name_to_iso4217` and `iso4217_to_name`. Related: - https://github.com/searxng/searxng/discussions/1892 - https://github.com/searxng/searxng/pull/3458#issuecomment-2900807671 - https://github.com/searxng/searxng/pull/4650 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# SPDX-License-Identifier: AGPL-3.0-or-later
 | 
						|
"""Currency convert (DuckDuckGo)
 | 
						|
"""
 | 
						|
 | 
						|
import json
 | 
						|
from searx.result_types import EngineResults
 | 
						|
 | 
						|
# 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',
 | 
						|
    "description": "Service from DuckDuckGo.",
 | 
						|
}
 | 
						|
 | 
						|
engine_type = 'online_currency'
 | 
						|
categories = []
 | 
						|
base_url = 'https://duckduckgo.com/js/spice/currency/1/{0}/{1}'
 | 
						|
weight = 100
 | 
						|
 | 
						|
https_support = True
 | 
						|
 | 
						|
 | 
						|
def request(_query, params):
 | 
						|
    params['url'] = base_url.format(params['from'], params['to'])
 | 
						|
    return params
 | 
						|
 | 
						|
 | 
						|
def response(resp) -> EngineResults:
 | 
						|
    res = EngineResults()
 | 
						|
 | 
						|
    # remove first and last lines to get only json
 | 
						|
    json_resp = resp.text[resp.text.find('\n') + 1 : resp.text.rfind('\n') - 2]
 | 
						|
    try:
 | 
						|
        conversion_rate = float(json.loads(json_resp)["to"][0]["mid"])
 | 
						|
    except IndexError:
 | 
						|
        return res
 | 
						|
    answer = '{0} {1} = {2} {3}, 1 {1} ({5}) = {4} {3} ({6})'.format(
 | 
						|
        resp.search_params['amount'],
 | 
						|
        resp.search_params['from'],
 | 
						|
        resp.search_params['amount'] * conversion_rate,
 | 
						|
        resp.search_params['to'],
 | 
						|
        conversion_rate,
 | 
						|
        resp.search_params['from_name'],
 | 
						|
        resp.search_params['to_name'],
 | 
						|
    )
 | 
						|
 | 
						|
    url = f"https://duckduckgo.com/?q={resp.search_params['from']}+to+{resp.search_params['to']}"
 | 
						|
    res.add(res.types.Answer(answer=answer, url=url))
 | 
						|
    return res
 |