mirror of
				https://github.com/searxng/searxng.git
				synced 2025-11-03 19:17:07 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			505 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			505 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from json import loads
 | 
						|
 | 
						|
def request(query, params):
 | 
						|
    params['url'] = 'http://en.wikipedia.org/w/api.php?action=query&list=search&srsearch=%s&srprop=timestamp&format=json' % query
 | 
						|
 | 
						|
    return params
 | 
						|
 | 
						|
 | 
						|
def response(resp):
 | 
						|
    search_results = loads(resp.text)
 | 
						|
    results = []
 | 
						|
    res = search_results.get('query', {}).get('search', [])
 | 
						|
    if len(res):
 | 
						|
        results.append({'url': 'https://en.wikipedia.org/wiki/%s' % res[0]['title'].replace(' ', '_'), 'title': res[0]['title']})
 | 
						|
    return results
 | 
						|
 |