|
@@ -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
|