-
Notifications
You must be signed in to change notification settings - Fork 0
/
taramisnews.py
53 lines (41 loc) · 1.33 KB
/
taramisnews.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
"""
alterjt (Web)
@website https://taranis.news/
@provide-api ?
@using-api no
@results HTML (using search portal)
@stable no (HTML can change)
@parse url, title, content
"""
from cgi import escape
from urllib import urlencode
from lxml import html
from searx.search import logger
logger = logger.getChild('taranis')
# engine dependent config
categories = ['information', 'general']
paging = True
# search-url https://taranis.news/?s=var
base_url = 'https://taranis.news/'
search_url = 'page/{page}/?s={query}'
results_xpath = '//article[contains(@class, "cb-article")]/div[@class="cb-meta"]'
url_xpath = './/h2[@class="cb-post-title"]/a/@href'
title_xpath = './/h2[@class="cb-post-title"]/a//text()'
def request(query, params):
host = base_url
params['url'] = host + search_url.format(page=params['pageno'] -1,
query=query)
return params
# get response from search-request
def response(resp):
dom = html.fromstring(resp.text)
results = []
for result in dom.xpath(results_xpath):
try:
res = {'url': result.xpath(url_xpath)[0],
'title': escape(''.join(result.xpath(title_xpath)))}
except:
logger.exception('Erreur: taranis')
continue
results.append(res)
return results