Browse Source

remove defunct imdb dvd rental chart

The IMDB dvd rental chart no longer exists.  They removed it from their site about a months ago.
The dvd rental link now just redirects to the box office link, resulting in couchpotato showing the
same movies in both charts.
https://getsatisfaction.com/imdb/topics/where-did-the-top-dvd-weekly-rental-charts-go
pull/6010/head
razorloves 9 years ago
parent
commit
17da8ff882
  1. 22
      couchpotato/core/media/movie/providers/automation/imdb.py

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

@ -37,14 +37,8 @@ class IMDBBase(Automation, RSS):
'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,
'order': 3,
'name': 'IMDB - Top 250 Movies',
'url': 'http://www.imdb.com/chart/top',
},
@ -270,13 +264,6 @@ config = [{
'default': True,
},
{
'name': 'automation_charts_rentals',
'type': 'bool',
'label': 'DVD Rentals',
'description': 'Top DVD <a href="http://www.imdb.com/boxoffice/rentals" target="_blank">rentals</a> chart',
'default': True,
},
{
'name': 'automation_charts_top250',
'type': 'bool',
'label': 'TOP 250',
@ -319,13 +306,6 @@ config = [{
'default': False,
},
{
'name': 'chart_display_rentals',
'type': 'bool',
'label': 'DVD Rentals',
'description': 'Top DVD <a href="http://www.imdb.com/boxoffice/rentals" target="_blank">rentals</a> chart',
'default': True,
},
{
'name': 'chart_display_boxoffice',
'type': 'bool',
'label': 'Box office TOP 10',

Loading…
Cancel
Save