|
|
@ -13,8 +13,8 @@ log = CPLog(__name__) |
|
|
|
class IMDBAPI(MovieProvider): |
|
|
|
|
|
|
|
urls = { |
|
|
|
'search': 'http://www.imdbapi.com/?tomatoes=true&%s', |
|
|
|
'info': 'http://www.imdbapi.com/?tomatoes=true&i=%s', |
|
|
|
'search': 'http://www.imdbapi.com/?%s', |
|
|
|
'info': 'http://www.imdbapi.com/?i=%s', |
|
|
|
} |
|
|
|
|
|
|
|
http_time_between_calls = 0 |
|
|
@ -90,7 +90,7 @@ class IMDBAPI(MovieProvider): |
|
|
|
}, |
|
|
|
'rating': { |
|
|
|
'imdb': (tryFloat(movie.get('imdbRating', 0)), tryInt(movie.get('imdbVotes', '').replace(',', ''))), |
|
|
|
'rotten': (tryFloat(movie.get('tomatoRating', 0)), tryInt(movie.get('tomatoReviews', '').replace(',', ''))), |
|
|
|
#'rotten': (tryFloat(movie.get('tomatoRating', 0)), tryInt(movie.get('tomatoReviews', '').replace(',', ''))), |
|
|
|
}, |
|
|
|
'imdb': str(movie.get('imdbID', '')), |
|
|
|
'runtime': self.runtimeToMinutes(movie.get('Runtime', '')), |
|
|
|