mirror of https://github.com/searxng/searxng.git
[ehn] added ixquick engine, using startpage engine
This commit is contained in:
parent
132681b3aa
commit
a01042ae61
|
@ -1,8 +1,8 @@
|
|||
from urllib import urlencode
|
||||
from lxml import html
|
||||
|
||||
base_url = 'https://startpage.com/'
|
||||
search_url = base_url+'do/search'
|
||||
base_url = None
|
||||
search_url = None
|
||||
|
||||
|
||||
def request(query, params):
|
||||
|
@ -24,6 +24,11 @@ def response(resp):
|
|||
link = result.xpath('.//h3/a')[0]
|
||||
url = link.attrib.get('href')
|
||||
title = link.text_content()
|
||||
|
||||
content =''
|
||||
if len(result.xpath('./p[@class="desc"]')):
|
||||
content = result.xpath('./p[@class="desc"]')[0].text_content()
|
||||
|
||||
results.append({'url': url, 'title': title, 'content': content})
|
||||
|
||||
return results
|
||||
|
|
|
@ -68,6 +68,13 @@ engines:
|
|||
|
||||
- name : startpage
|
||||
engine : startpage
|
||||
base_url : 'https://startpage.com/'
|
||||
search_url : 'https://startpage.com/do/search'
|
||||
|
||||
- name : ixquick
|
||||
engine : startpage
|
||||
base_url : 'https://www.ixquick.com/'
|
||||
search_url : 'https://www.ixquick.com/do/search'
|
||||
|
||||
- name : twitter
|
||||
engine : twitter
|
||||
|
|
Loading…
Reference in New Issue