mirror of
				https://github.com/searxng/searxng.git
				synced 2025-11-04 03:27:06 -05:00 
			
		
		
		
	Merge pull request #1021 from misnyo/google_news
[fix] google news dom xpath fix
This commit is contained in:
		
						commit
						806cb08750
					
				@ -67,8 +67,8 @@ def response(resp):
 | 
				
			|||||||
    for result in dom.xpath('//div[@class="g"]|//div[@class="g _cy"]'):
 | 
					    for result in dom.xpath('//div[@class="g"]|//div[@class="g _cy"]'):
 | 
				
			||||||
        try:
 | 
					        try:
 | 
				
			||||||
            r = {
 | 
					            r = {
 | 
				
			||||||
                'url': result.xpath('.//div[@class="_cnc"]//a/@href')[0],
 | 
					                'url': result.xpath('.//a[@class="l _PMs"]')[0].attrib.get("href"),
 | 
				
			||||||
                'title': ''.join(result.xpath('.//div[@class="_cnc"]//h3//text()')),
 | 
					                'title': ''.join(result.xpath('.//a[@class="l _PMs"]//text()')),
 | 
				
			||||||
                'content': ''.join(result.xpath('.//div[@class="st"]//text()')),
 | 
					                'content': ''.join(result.xpath('.//div[@class="st"]//text()')),
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        except:
 | 
					        except:
 | 
				
			||||||
 | 
				
			|||||||
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user