|
@@ -2,7 +2,6 @@ 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
|
5
|
from dateutil import parser
|
7
|
6
|
|
8
|
7
|
base_url = 'http://vimeo.com'
|
|
@@ -43,7 +42,8 @@ def response(resp):
|
43
|
42
|
url = base_url + result.xpath(url_xpath)[0]
|
44
|
43
|
title = p.unescape(extract_text(result.xpath(title_xpath)))
|
45
|
44
|
thumbnail = extract_text(result.xpath(content_xpath)[0])
|
46
|
|
- publishedDate = parser.parse(extract_text(result.xpath(publishedDate_xpath)[0]))
|
|
45
|
+ publishedDate = parser.parse(extract_text(
|
|
46
|
+ result.xpath(publishedDate_xpath)[0]))
|
47
|
47
|
|
48
|
48
|
results.append({'url': url,
|
49
|
49
|
'title': title,
|