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