ソースを参照

[fix] google news xpath

Marc Abonce Seguin 6 年 前
コミット
835d1edd58
共有1 個のファイルを変更した2 個の追加2 個の削除を含む
  1. 2
    2
      searx/engines/google_news.py

+ 2
- 2
searx/engines/google_news.py ファイルの表示

@@ -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: