|
@@ -84,15 +84,18 @@ def response(resp):
|
84
|
84
|
content = content[0:300] + "..."
|
85
|
85
|
# TODO: center snippet on query term
|
86
|
86
|
|
87
|
|
- publishedDate = datetime.strptime(entry.xpath('.//DateCreated/Year')[0].text
|
88
|
|
- + '-' + entry.xpath('.//DateCreated/Month')[0].text
|
89
|
|
- + '-' + entry.xpath('.//DateCreated/Day')[0].text, '%Y-%m-%d')
|
90
|
|
-
|
91
|
87
|
res_dict = {'url': url,
|
92
|
88
|
'title': title,
|
93
|
|
- 'publishedDate': publishedDate,
|
94
|
89
|
'content': content}
|
95
|
90
|
|
|
91
|
+ try:
|
|
92
|
+ publishedDate = datetime.strptime(entry.xpath('.//DateCreated/Year')[0].text
|
|
93
|
+ + '-' + entry.xpath('.//DateCreated/Month')[0].text
|
|
94
|
+ + '-' + entry.xpath('.//DateCreated/Day')[0].text, '%Y-%m-%d')
|
|
95
|
+ res_dict['publishedDate'] = publishedDate
|
|
96
|
+ except:
|
|
97
|
+ pass
|
|
98
|
+
|
96
|
99
|
results.append(res_dict)
|
97
|
100
|
|
98
|
101
|
return results
|