Browse Source

Merge 9464cd0b11 into f0d7eddcfb

pull/5291/merge
Nathan Beka 8 years ago
committed by GitHub
parent
commit
b00f3708d1
  1. 26
      couchpotato/core/media/movie/providers/automation/imdb.py

26
couchpotato/core/media/movie/providers/automation/imdb.py

@ -143,7 +143,31 @@ class IMDBWatchlist(IMDBBase):
class IMDBAutomation(IMDBBase):
enabled_option = 'automation_providers_enabled'
charts = {
'theater': {
'order': 1,
'name': 'IMDB - Movies in Theaters',
'url': 'http://www.imdb.com/movies-in-theaters/',
},
'boxoffice': {
'order': 2,
'name': 'IMDB - Box Office',
'url': 'http://www.imdb.com/boxoffice/',
},
'rentals': {
'order': 3,
'name': 'IMDB - Top DVD rentals',
'url': 'http://www.imdb.com/boxoffice/rentals',
'type': 'json',
},
'top250': {
'order': 4,
'name': 'IMDB - Top 250 Movies',
'url': 'http://www.imdb.com/chart/top',
},
}
def getIMDBids(self):
movies = []

Loading…
Cancel
Save