| 
									
										
										
										
											2014-09-02 18:49:42 +02:00
										 |  |  | ## Stackoverflow (It) | 
					
						
							|  |  |  | #  | 
					
						
							|  |  |  | # @website     https://stackoverflow.com/ | 
					
						
							|  |  |  | # @provide-api not clear (https://api.stackexchange.com/docs/advanced-search) | 
					
						
							|  |  |  | #  | 
					
						
							|  |  |  | # @using-api   no | 
					
						
							|  |  |  | # @results     HTML | 
					
						
							|  |  |  | # @stable      no (HTML can change) | 
					
						
							|  |  |  | # @parse       url, title, content | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 00:27:25 +02:00
										 |  |  | from urlparse import urljoin | 
					
						
							| 
									
										
										
										
											2013-10-17 20:43:05 +02:00
										 |  |  | from cgi import escape | 
					
						
							| 
									
										
										
										
											2013-10-20 21:31:16 +02:00
										 |  |  | from urllib import urlencode | 
					
						
							| 
									
										
										
										
											2014-02-05 20:24:31 +01:00
										 |  |  | from lxml import html | 
					
						
							| 
									
										
										
										
											2013-10-17 00:27:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2013-10-23 23:55:37 +02:00
										 |  |  | url = 'http://stackoverflow.com/' | 
					
						
							| 
									
										
										
										
											2014-01-30 01:55:49 +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' | 
					
						
							|  |  |  | title_xpath = './/text()' | 
					
						
							|  |  |  | content_xpath = './/div[@class="excerpt"]//text()' | 
					
						
							| 
									
										
										
										
											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): | 
					
						
							| 
									
										
										
										
											2014-01-30 01:55:49 +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): | 
					
						
							|  |  |  |     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')) | 
					
						
							| 
									
										
										
										
											2014-09-02 18:49:42 +02:00
										 |  |  |         title = escape(' '.join(link.xpath(title_xpath))) | 
					
						
							|  |  |  |         content = escape(' '.join(result.xpath(content_xpath))) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # append result | 
					
						
							|  |  |  |         results.append({'url': href,  | 
					
						
							|  |  |  |                         'title': title,  | 
					
						
							|  |  |  |                         'content': content}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # return results | 
					
						
							| 
									
										
										
										
											2013-10-17 00:27:25 +02:00
										 |  |  |     return results |