|
|
@ -1,5 +1,5 @@ |
|
|
|
from couchpotato.core.helpers.rss import RSS |
|
|
|
from couchpotato.core.helpers.variable import tryInt |
|
|
|
from couchpotato.core.helpers.variable import tryInt, splitString |
|
|
|
from couchpotato.core.logger import CPLog |
|
|
|
from couchpotato.core.providers.automation.base import Automation |
|
|
|
from xml.etree.ElementTree import QName |
|
|
@ -11,17 +11,23 @@ log = CPLog(__name__) |
|
|
|
class Rottentomatoes(Automation, RSS): |
|
|
|
|
|
|
|
interval = 1800 |
|
|
|
urls = { |
|
|
|
'namespace': 'http://www.rottentomatoes.com/xmlns/rtmovie/', |
|
|
|
'theater': 'http://www.rottentomatoes.com/syndication/rss/in_theaters.xml', |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def getIMDBids(self): |
|
|
|
|
|
|
|
movies = [] |
|
|
|
|
|
|
|
rss_movies = self.getRSSData(self.urls['theater']) |
|
|
|
rating_tag = str(QName(self.urls['namespace'], 'tomatometer_percent')) |
|
|
|
rotten_tomatoes_namespace = 'http://www.rottentomatoes.com/xmlns/rtmovie/' |
|
|
|
urls = dict(zip(splitString(self.conf('automation_urls')), [tryInt(x) for x in splitString(self.conf('automation_urls_use'))])) |
|
|
|
|
|
|
|
for url in urls: |
|
|
|
|
|
|
|
if not urls[url]: |
|
|
|
continue |
|
|
|
|
|
|
|
rss_movies = self.getRSSData(url) |
|
|
|
rating_tag = str(QName(rotten_tomatoes_namespace, 'tomatometer_percent')) |
|
|
|
|
|
|
|
for movie in rss_movies: |
|
|
|
|
|
|
|