parse color and sound better
This commit is contained in:
parent
2d65dcd16a
commit
8b3230df05
1 changed files with 10 additions and 4 deletions
|
@ -216,13 +216,19 @@ class Imdb(SiteParser):
|
|||
},
|
||||
'color': {
|
||||
'page': 'combined',
|
||||
're': '<h5>Color:</h5><div class="info-content"><a.*?>(.*?)</a>',
|
||||
'type': 'string'
|
||||
're': [
|
||||
'<h5>Color:</h5><div class="info-content">(.*?)</div>',
|
||||
'<a.*?>(.*?)</a>'
|
||||
],
|
||||
'type': 'list'
|
||||
},
|
||||
'sound': {
|
||||
'page': 'combined',
|
||||
're': '<h5>Sound Mix:</h5><div class="info-content"><a.*?>(.*?)</a>',
|
||||
'type': 'string'
|
||||
're': [
|
||||
'<h5>Sound Mix:</h5><div class="info-content">(.*?)</div>',
|
||||
'<a.*?>(.*?)</a>'
|
||||
],
|
||||
'type': 'list'
|
||||
},
|
||||
'season': {
|
||||
'page': 'combined',
|
||||
|
|
Loading…
Reference in a new issue