update genre parse. fixes #635
This commit is contained in:
parent
6bd249a5ae
commit
cf33e530f4
1 changed files with 4 additions and 1 deletions
|
@ -135,7 +135,10 @@ class Imdb(SiteParser):
|
||||||
},
|
},
|
||||||
'genre': {
|
'genre': {
|
||||||
'page': 'combined',
|
'page': 'combined',
|
||||||
're': '<a href="/Sections/Genres/.*?/">(.*?)</a>',
|
're': [
|
||||||
|
'<h5>Genre:</h5>(.*?)<hr',
|
||||||
|
'<a href="/Sections/Genres/.*?/">(.*?)</a>'
|
||||||
|
],
|
||||||
'type': 'list'
|
'type': 'list'
|
||||||
},
|
},
|
||||||
'gross': {
|
'gross': {
|
||||||
|
|
Loading…
Reference in a new issue