diff options
| author | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-03-18 13:19:50 +0100 |
|---|---|---|
| committer | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-03-18 13:19:50 +0100 |
| commit | 337bd6d907503176eb94290c3f386ce88167dea8 (patch) | |
| tree | 384625d82b868329252f549992aee4f64d8a2566 /searx/engines/youtube.py | |
| parent | fd86bf8189683aee72b934c8dd7544aa362a0728 (diff) | |
simplify datetime extraction
Diffstat (limited to 'searx/engines/youtube.py')
| -rw-r--r-- | searx/engines/youtube.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/searx/engines/youtube.py b/searx/engines/youtube.py index 5b04f3513..f6b08b330 100644 --- a/searx/engines/youtube.py +++ b/searx/engines/youtube.py @@ -1,5 +1,7 @@ from json import loads from urllib import urlencode +from dateutil import parser +from datetime import datetime categories = ['videos'] @@ -35,6 +37,10 @@ def response(resp): content = '' thumbnail = '' +#"2013-12-31T15:22:51.000Z" + pubdate = result['published']['$t'] + publishedDate = parser.parse(pubdate) + if result['media$group']['media$thumbnail']: thumbnail = result['media$group']['media$thumbnail'][0]['url'] content += '<a href="{0}" title="{0}" ><img src="{1}" /></a>'.format(url, thumbnail) # noqa @@ -48,6 +54,7 @@ def response(resp): 'title': title, 'content': content, 'template': 'videos.html', + 'publishedDate': publishedDate, 'thumbnail': thumbnail}) return results |