Browse Source

[ehn] added ixquick engine, using startpage engine

pw3t 11 years ago
parent
commit
a01042ae61
2 changed files with 15 additions and 3 deletions
  1. 8
    3
      searx/engines/startpage.py
  2. 7
    0
      searx/settings_robot.yml

+ 8
- 3
searx/engines/startpage.py View File

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

+ 7
- 0
searx/settings_robot.yml View File

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