showing publishedDate for news

This commit is contained in:
Thomas Pointhuber 2014-03-14 09:55:04 +01:00
parent a559bad488
commit b88146d669
4 changed files with 28 additions and 1 deletions

View file

@ -2,6 +2,7 @@
from urllib import urlencode
from json import loads
from datetime import datetime, timedelta
categories = ['news']
@ -31,7 +32,15 @@ def response(resp):
return []
for result in search_res['responseData']['results']:
# S.149 (159), library.pdf
# datetime.strptime("Mon, 10 Mar 2014 16:26:15 -0700", "%a, %d %b %Y %H:%M:%S %z")
# publishedDate = parse(result['publishedDate'])
publishedDate = datetime.strptime(str.join(' ',result['publishedDate'].split(None)[0:5]), "%a, %d %b %Y %H:%M:%S")
#utc_offset = timedelta(result['publishedDate'].split(None)[5]) # local = utc + offset
#publishedDate = publishedDate + utc_offset
results.append({'url': result['unescapedUrl'],
'title': result['titleNoFormatting'],
'publishedDate': publishedDate,
'content': result['content']})
return results