Try for timestamp, description from window.__INITIAL_DATA__ pages

This commit is contained in:
df 2021-04-18 01:46:40 +01:00 committed by dirkf
parent 92d73ef393
commit 6d4932f023
1 changed files with 4 additions and 1 deletions

View File

@ -1205,7 +1205,10 @@ class BBCIE(BBCCoUkIE):
if name == 'media-experience':
parse_media(try_get(resp, lambda x: x['data']['initialItem']['mediaItem'], dict))
elif name == 'article':
for block in (try_get(resp, lambda x: x['data']['blocks'], list) or []):
for block in (try_get(resp,
(lambda x: x['data']['blocks'],
lambda x: x['data']['content']['model']['blocks'],),
list) or []):
if block.get('type') != 'media':
continue
parse_media(block.get('model'))