only $ bugets
This commit is contained in:
parent
78d8f8cc0b
commit
7f6e118e6e
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ class Imdb(SiteParser):
|
|||
'budget': {
|
||||
'page': 'business',
|
||||
're': [
|
||||
'<h5>Budget</h5>(.*?)<br',
|
||||
'<h5>Budget</h5>\s*?\$(.*?)<br',
|
||||
lambda data: findRe(ox.decodeHtml(data).replace(',', ''), '\d+')
|
||||
],
|
||||
'type': 'int'
|
||||
|
@ -141,7 +141,7 @@ class Imdb(SiteParser):
|
|||
'gross': {
|
||||
'page': 'business',
|
||||
're': [
|
||||
'<h5>Gross</h5>(.*?)\(',
|
||||
'<h5>Gross</h5>\s*?\$(.*?)<br',
|
||||
lambda data: findRe(data.replace(',', ''), '\d+')
|
||||
],
|
||||
'type': 'int'
|
||||
|
|
Loading…
Reference in a new issue