瀏覽代碼

extract publishDate from vimeo

Thomas Pointhuber 11 年之前
父節點
當前提交
993271bed3
共有 2 個檔案被更改,包括 7 行新增1 行删除
  1. 6
    0
      searx/engines/vimeo.py
  2. 1
    1
      searx/engines/yahoo_news.py

+ 6
- 0
searx/engines/vimeo.py 查看文件

@@ -2,6 +2,8 @@ from urllib import urlencode
2 2
 from HTMLParser import HTMLParser
3 3
 from lxml import html
4 4
 from xpath import extract_text
5
+from datetime import datetime
6
+from dateutil import parser
5 7
 
6 8
 base_url = 'http://vimeo.com'
7 9
 search_url = base_url + '/search?{query}'
@@ -10,6 +12,7 @@ content_xpath = None
10 12
 title_xpath = None
11 13
 results_xpath = ''
12 14
 content_tpl = '<a href="{0}">  <img src="{2}"/> </a>'
15
+publishedDate_xpath = './/p[@class="meta"]//attribute::datetime'
13 16
 
14 17
 # the cookie set by vimeo contains all the following values,
15 18
 # but only __utma seems to be requiered
@@ -40,9 +43,12 @@ def response(resp):
40 43
         url = base_url + result.xpath(url_xpath)[0]
41 44
         title = p.unescape(extract_text(result.xpath(title_xpath)))
42 45
         thumbnail = extract_text(result.xpath(content_xpath)[0])
46
+        publishedDate = parser.parse(extract_text(result.xpath(publishedDate_xpath)[0]))
47
+
43 48
         results.append({'url': url,
44 49
                         'title': title,
45 50
                         'content': content_tpl.format(url, title, thumbnail),
46 51
                         'template': 'videos.html',
52
+                        'publishedDate': publishedDate,
47 53
                         'thumbnail': thumbnail})
48 54
     return results

+ 1
- 1
searx/engines/yahoo_news.py 查看文件

@@ -53,7 +53,7 @@ def response(resp):
53 53
                     - timedelta(hours=int(timeNumbers[0]))\
54 54
                     - timedelta(minutes=int(timeNumbers[1]))
55 55
             else:
56
-                publishedDate =parser.parse(publishedDate)
56
+                publishedDate = parser.parse(publishedDate)
57 57
 
58 58
         if publishedDate.year == 1900:
59 59
             publishedDate = publishedDate.replace(year=datetime.now().year)