Browse Source

[fix] indexing ++ url extraction

Adam Tauber 11 years ago
parent
commit
01c2eeb8ff
1 changed files with 5 additions and 2 deletions
  1. 5
    2
      searx/engines/yahoo.py

+ 5
- 2
searx/engines/yahoo.py View File

@@ -47,8 +47,11 @@ def response(resp):
47 47
     dom = html.fromstring(resp.text)
48 48
 
49 49
     for result in dom.xpath(results_xpath):
50
-        url = parse_url(extract_url(result.xpath(url_xpath), search_url))
51
-        title = extract_text(result.xpath(title_xpath)[0])
50
+        try:
51
+            url = parse_url(extract_url(result.xpath(url_xpath), search_url))
52
+            title = extract_text(result.xpath(title_xpath)[0])
53
+        except:
54
+            continue
52 55
         content = extract_text(result.xpath(content_xpath)[0])
53 56
         results.append({'url': url, 'title': title, 'content': content})
54 57