-
Notifications
You must be signed in to change notification settings - Fork 0
/
globalpress.py
55 lines (43 loc) · 1.43 KB
/
globalpress.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
54
55
"""
globalepresse (Web)
@website https://globalepresse.net
@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('globalepresse')
# engine dependent config
categories = ['information', 'general']
paging = True
# search-url https://globalepresse.net/?s=var
base_url = 'https://globalepresse.net/'
search_url = 'page/{page}/?s={query}'
results_xpath = '//article'
url_xpath = './/h2[@class="posttitle"]/a/@href'
title_xpath = './/h2[@class="posttitle"]/a//text()'
content_xpath = './/section[@class="entry"]/p//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))),
'content': escape(''.join(result.xpath(content_xpath)))}
except:
logger.exception('Erreur: globalepresse')
continue
results.append(res)
return results