浏览代码

[ehn] added ixquick engine, using startpage engine

pw3t 11 年前
父节点
当前提交
1dd35e9916
共有 2 个文件被更改,包括 15 次插入3 次删除
  1. 8
    3
      searx/engines/startpage.py
  2. 7
    0
      settings.yml

+ 8
- 3
searx/engines/startpage.py 查看文件

@@ -3,8 +3,8 @@ from lxml import html
3 3
 from urlparse import urlparse
4 4
 from cgi import escape
5 5
 
6
-base_url = 'https://startpage.com/'
7
-search_url = base_url+'do/search'
6
+base_url = None
7
+search_url = None
8 8
 
9 9
 def request(query, params):
10 10
     global search_url
@@ -26,6 +26,11 @@ def response(resp):
26 26
         url = link.attrib.get('href')
27 27
         parsed_url = urlparse(url)
28 28
         title = link.text_content()
29
-        content = result.xpath('./p[@class="desc"]')[0].text_content()
29
+
30
+        content =''
31
+        if len(result.xpath('./p[@class="desc"]')):
32
+            content = result.xpath('./p[@class="desc"]')[0].text_content()
33
+        
30 34
         results.append({'url': url, 'title': title, 'content': content})
35
+    
31 36
     return results

+ 7
- 0
settings.yml 查看文件

@@ -68,6 +68,13 @@ engines:
68 68
 
69 69
   - name : startpage
70 70
     engine : startpage
71
+    base_url : 'https://startpage.com/'
72
+    search_url : 'https://startpage.com/do/search'
73
+
74
+  - name : ixquick
75
+    engine : startpage
76
+    base_url : 'https://www.ixquick.com/'
77
+    search_url : 'https://www.ixquick.com/do/search'
71 78
 
72 79
   - name : twitter
73 80
     engine : twitter