imdb can include things like id=

This commit is contained in:
j 2009-07-11 11:45:31 +02:00
parent a9cec7dd33
commit efa43f8437

View file

@ -55,11 +55,13 @@ def getMovieData(wikipediaUrl):
value = d[1].strip()
filmbox[key] = value
if 'imdb title' in data:
filmbox['imdb_id'] = findRe(data, 'imdb title\|(\d*?)\|')
filmbox['imdb_id'] = findRe(data, 'imdb title\|.*?(\d*?)\|')
if 'Amg movie' in data:
filmbox['amg_id'] = findRe(data, 'Amg movie\|(\d*?)\|')
filmbox['amg_id'] = findRe(data, 'Amg movie\|.*?(\d*?)\|')
if 'rotten-tomatoes' in data:
filmbox['rottentomatoes_id'] = findRe(data, 'rotten-tomatoes\|id\=(.*?)\|')
if not filmbox['rottentomatoes_id']:
filmbox['rottentomatoes_id'] = findRe(data, 'rotten-tomatoes\|(.*?)\|')
return filmbox
def getImageUrl(name):