mirror of
				https://github.com/searxng/searxng.git
				synced 2025-10-31 02:27:06 -04:00 
			
		
		
		
	Merge pull request #94 from dalf/master
[enh] duckduckgo engine: add language support
This commit is contained in:
		
						commit
						d23dd7e276
					
				| @ -18,7 +18,7 @@ from searx.utils import html_to_text | ||||
| # engine dependent config | ||||
| categories = ['general'] | ||||
| paging = True | ||||
| locale = 'us-en' | ||||
| language_support = True | ||||
| 
 | ||||
| # search-url | ||||
| url = 'https://duckduckgo.com/html?{query}&s={offset}' | ||||
| @ -34,8 +34,13 @@ content_xpath = './/div[@class="snippet"]//text()' | ||||
| def request(query, params): | ||||
|     offset = (params['pageno'] - 1) * 30 | ||||
| 
 | ||||
|     if params['language'] == 'all': | ||||
|         locale = 'en-us' | ||||
|     else: | ||||
|         locale = params['language'].replace('_','-').lower() | ||||
| 
 | ||||
|     params['url'] = url.format( | ||||
|         query=urlencode({'q': query, 'l': locale}), | ||||
|         query=urlencode({'q': query, 'kl': locale}), | ||||
|         offset=offset) | ||||
| 
 | ||||
|     return params | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user