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': {
|
'color': {
|
||||||
'page': 'combined',
|
'page': 'combined',
|
||||||
're': '<h5>Color:</h5><div class="info-content"><a.*?>(.*?)</a>',
|
're': [
|
||||||
'type': 'string'
|
'<h5>Color:</h5><div class="info-content">(.*?)</div>',
|
||||||
|
'<a.*?>(.*?)</a>'
|
||||||
|
],
|
||||||
|
'type': 'list'
|
||||||
},
|
},
|
||||||
'sound': {
|
'sound': {
|
||||||
'page': 'combined',
|
'page': 'combined',
|
||||||
're': '<h5>Sound Mix:</h5><div class="info-content"><a.*?>(.*?)</a>',
|
're': [
|
||||||
'type': 'string'
|
'<h5>Sound Mix:</h5><div class="info-content">(.*?)</div>',
|
||||||
|
'<a.*?>(.*?)</a>'
|
||||||
|
],
|
||||||
|
'type': 'list'
|
||||||
},
|
},
|
||||||
'season': {
|
'season': {
|
||||||
'page': 'combined',
|
'page': 'combined',
|
||||||
|
|
Loading…
Reference in a new issue