| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2015-05-02 15:45:17 +02:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  |  Stackoverflow (IT) | 
					
						
							| 
									
										
										
										
											2015-05-02 15:45:17 +02:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2014-09-02 18:49:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-18 19:59:01 +01:00
										 |  |  | from urllib.parse import urlencode, urljoin | 
					
						
							| 
									
										
										
										
											2014-02-05 20:24:31 +01:00
										 |  |  | from lxml import html | 
					
						
							| 
									
										
										
										
											2020-10-02 18:13:56 +02:00
										 |  |  | from searx.utils import extract_text | 
					
						
							| 
									
										
										
										
											2020-12-03 13:23:19 +01:00
										 |  |  | from searx.exceptions import SearxEngineCaptchaException | 
					
						
							| 
									
										
										
										
											2013-10-17 00:27:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # about | 
					
						
							|  |  |  | about = { | 
					
						
							|  |  |  |     "website": 'https://stackoverflow.com/', | 
					
						
							|  |  |  |     "wikidata_id": 'Q549037', | 
					
						
							|  |  |  |     "official_api_documentation": 'https://api.stackexchange.com/docs', | 
					
						
							|  |  |  |     "use_official_api": False, | 
					
						
							|  |  |  |     "require_api_key": False, | 
					
						
							|  |  |  |     "results": 'HTML', | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 18:49:42 +02:00
										 |  |  | # engine dependent config | 
					
						
							| 
									
										
										
										
											2013-10-17 21:07:09 +02:00
										 |  |  | categories = ['it'] | 
					
						
							| 
									
										
										
										
											2014-09-02 18:49:42 +02:00
										 |  |  | paging = True | 
					
						
							| 
									
										
										
										
											2013-10-17 21:07:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 18:49:42 +02:00
										 |  |  | # search-url | 
					
						
							| 
									
										
										
										
											2015-04-26 18:13:09 +02:00
										 |  |  | url = 'https://stackoverflow.com/' | 
					
						
							| 
									
										
										
										
											2016-01-18 12:47:31 +01:00
										 |  |  | search_url = url + 'search?{query}&page={pageno}' | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 18:49:42 +02:00
										 |  |  | # specific xpath variables | 
					
						
							|  |  |  | results_xpath = '//div[contains(@class,"question-summary")]' | 
					
						
							|  |  |  | link_xpath = './/div[@class="result-link"]//a|.//div[@class="summary"]//h3//a' | 
					
						
							| 
									
										
										
										
											2015-01-31 17:29:22 +01:00
										 |  |  | content_xpath = './/div[@class="excerpt"]' | 
					
						
							| 
									
										
										
										
											2014-01-30 01:55:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 00:27:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 18:49:42 +02:00
										 |  |  | # do search-request | 
					
						
							| 
									
										
										
										
											2013-10-17 00:27:25 +02:00
										 |  |  | def request(query, params): | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  |     params['url'] = search_url.format(query=urlencode({'q': query}), pageno=params['pageno']) | 
					
						
							| 
									
										
										
										
											2014-09-02 18:49:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 00:27:25 +02:00
										 |  |  |     return params | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 18:49:42 +02:00
										 |  |  | # get response from search-request | 
					
						
							| 
									
										
										
										
											2013-10-17 00:27:25 +02:00
										 |  |  | def response(resp): | 
					
						
							| 
									
										
										
										
											2021-03-18 19:59:01 +01:00
										 |  |  |     if resp.url.path.startswith('/nocaptcha'): | 
					
						
							| 
									
										
										
										
											2020-12-03 13:23:19 +01:00
										 |  |  |         raise SearxEngineCaptchaException() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 00:27:25 +02:00
										 |  |  |     results = [] | 
					
						
							| 
									
										
										
										
											2014-09-02 18:49:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 00:27:25 +02:00
										 |  |  |     dom = html.fromstring(resp.text) | 
					
						
							| 
									
										
										
										
											2014-09-02 18:49:42 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # parse results | 
					
						
							|  |  |  |     for result in dom.xpath(results_xpath): | 
					
						
							|  |  |  |         link = result.xpath(link_xpath)[0] | 
					
						
							| 
									
										
										
										
											2013-10-23 23:55:37 +02:00
										 |  |  |         href = urljoin(url, link.attrib.get('href')) | 
					
						
							| 
									
										
										
										
											2016-12-09 11:44:24 +01:00
										 |  |  |         title = extract_text(link) | 
					
						
							|  |  |  |         content = extract_text(result.xpath(content_xpath)) | 
					
						
							| 
									
										
										
										
											2014-09-02 18:49:42 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # append result | 
					
						
							| 
									
										
										
										
											2014-12-07 16:37:56 +01:00
										 |  |  |         results.append({'url': href, | 
					
						
							|  |  |  |                         'title': title, | 
					
						
							| 
									
										
										
										
											2014-09-02 18:49:42 +02:00
										 |  |  |                         'content': content}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # return results | 
					
						
							| 
									
										
										
										
											2013-10-17 00:27:25 +02:00
										 |  |  |     return results |