|
@@ -4,6 +4,8 @@ from urllib import urlencode
|
4
|
4
|
from lxml import html
|
5
|
5
|
from searx.engines.xpath import extract_text, extract_url
|
6
|
6
|
from searx.engines.yahoo import parse_url
|
|
7
|
+from datetime import datetime, timedelta
|
|
8
|
+import re
|
7
|
9
|
|
8
|
10
|
categories = ['news']
|
9
|
11
|
search_url = 'http://news.search.yahoo.com/search?{query}&b={offset}'
|
|
@@ -11,6 +13,7 @@ results_xpath = '//div[@class="res"]'
|
11
|
13
|
url_xpath = './/h3/a/@href'
|
12
|
14
|
title_xpath = './/h3/a'
|
13
|
15
|
content_xpath = './/div[@class="abstr"]'
|
|
16
|
+publishedDate_xpath = './/span[@class="timestamp"]'
|
14
|
17
|
suggestion_xpath = '//div[@id="satat"]//a'
|
15
|
18
|
|
16
|
19
|
paging = True
|
|
@@ -37,7 +40,22 @@ def response(resp):
|
37
|
40
|
url = parse_url(extract_url(result.xpath(url_xpath), search_url))
|
38
|
41
|
title = extract_text(result.xpath(title_xpath)[0])
|
39
|
42
|
content = extract_text(result.xpath(content_xpath)[0])
|
40
|
|
- results.append({'url': url, 'title': title, 'content': content})
|
|
43
|
+ publishedDate = extract_text(result.xpath(publishedDate_xpath)[0])
|
|
44
|
+
|
|
45
|
+ if re.match("^[0-9]+ minute(s|) ago$", publishedDate):
|
|
46
|
+ publishedDate = datetime.now() - timedelta(minutes=int(re.match(r'\d+', publishedDate).group()))
|
|
47
|
+ else:
|
|
48
|
+ if re.match("^[0-9]+ hour(s|), [0-9]+ minute(s|) ago$", publishedDate):
|
|
49
|
+ timeNumbers = re.findall(r'\d+', publishedDate)
|
|
50
|
+ publishedDate = datetime.now() - timedelta(hours=int(timeNumbers[0])) - timedelta(minutes=int(timeNumbers[1]))
|
|
51
|
+ else:
|
|
52
|
+ # TODO year in string possible?
|
|
53
|
+ publishedDate = datetime.strptime(publishedDate,"%b %d %H:%M%p")
|
|
54
|
+
|
|
55
|
+ if publishedDate.year == 1900:
|
|
56
|
+ publishedDate = publishedDate.replace(year=datetime.now().year)
|
|
57
|
+
|
|
58
|
+ results.append({'url': url, 'title': title, 'content': content,'publishedDate':publishedDate})
|
41
|
59
|
|
42
|
60
|
if not suggestion_xpath:
|
43
|
61
|
return results
|