mirror of
				https://github.com/searxng/searxng.git
				synced 2025-10-31 02:27:06 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			829 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			829 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from lxml import html
 | |
| from urlparse import urljoin
 | |
| from cgi import escape
 | |
| from urllib import urlencode
 | |
| 
 | |
| categories = ['it']
 | |
| 
 | |
| url = 'http://stackoverflow.com/'
 | |
| search_url = url+'search?'
 | |
| result_xpath = './/div[@class="excerpt"]//text()'
 | |
| 
 | |
| 
 | |
| def request(query, params):
 | |
|     params['url'] = search_url + urlencode({'q': query})
 | |
|     return params
 | |
| 
 | |
| 
 | |
| def response(resp):
 | |
|     results = []
 | |
|     dom = html.fromstring(resp.text)
 | |
|     for result in dom.xpath('//div[@class="question-summary search-result"]'):
 | |
|         link = result.xpath('.//div[@class="result-link"]//a')[0]
 | |
|         href = urljoin(url, link.attrib.get('href'))
 | |
|         title = escape(' '.join(link.xpath('.//text()')))
 | |
|         content = escape(' '.join(result.xpath(result_xpath)))
 | |
|         results.append({'url': href, 'title': title, 'content': content})
 | |
|     return results
 |