[enh] add length and author details to youtube videos

closes #775
This commit is contained in:
Adam Tauber 2020-06-09 20:31:51 +02:00
parent 2c6531b233
commit 6c06286251
2 changed files with 6 additions and 0 deletions

View file

@ -70,11 +70,15 @@ def response(resp):
title = get_text_from_json(video.get('title', {}))
content = get_text_from_json(video.get('descriptionSnippet', {}))
embedded = embedded_url.format(videoid=videoid)
author = get_text_from_json(video.get('ownerText', {}))
length = get_text_from_json(video.get('lengthText', {}))
# append result
results.append({'url': url,
'title': title,
'content': content,
'author': author,
'length': length,
'template': 'videos.html',
'embedded': embedded,
'thumbnail': thumbnail})