Selaa lähdekoodia

[fix] google news xpath

Marc Abonce Seguin 6 vuotta sitten
vanhempi
commit
835d1edd58
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2
    2
      searx/engines/google_news.py

+ 2
- 2
searx/engines/google_news.py Näytä tiedosto

@@ -68,8 +68,8 @@ def response(resp):
68 68
     for result in dom.xpath('//div[@class="g"]|//div[@class="g _cy"]'):
69 69
         try:
70 70
             r = {
71
-                'url': result.xpath('.//a[@class="l _PMs"]')[0].attrib.get("href"),
72
-                'title': ''.join(result.xpath('.//a[@class="l _PMs"]//text()')),
71
+                'url': result.xpath('.//a[@class="l lLrAF"]')[0].attrib.get("href"),
72
+                'title': ''.join(result.xpath('.//a[@class="l lLrAF"]//text()')),
73 73
                 'content': ''.join(result.xpath('.//div[@class="st"]//text()')),
74 74
             }
75 75
         except: