lists of lists
This commit is contained in:
parent
02345e0d70
commit
12326461c1
1 changed files with 10 additions and 2 deletions
|
@ -200,8 +200,16 @@ class Imdb(SiteParser):
|
|||
# 'type': 'list'
|
||||
#},
|
||||
'runtime': zebra_list('Runtime'),
|
||||
'color': zebra_list('Color', more=['<a.*?>([^(<]+)', strip_tags]),
|
||||
'sound': zebra_list('Sound Mix', more=['<a.*?>([^(<]+)', strip_tags]),
|
||||
'color': zebra_list('Color', more=[
|
||||
'<a.*?>([^(<]+)',
|
||||
lambda r: r[0] if isinstance(r, list) else r,
|
||||
strip_tags
|
||||
]),
|
||||
'sound': zebra_list('Sound Mix', more=[
|
||||
'<a.*?>([^(<]+)',
|
||||
lambda r: r[0] if isinstance(r, list) else r,
|
||||
strip_tags
|
||||
]),
|
||||
'season': {
|
||||
'page': 'reference',
|
||||
're': [
|
||||
|
|
Loading…
Reference in a new issue