Files
CouchPotatoServer/couchpotato/core/providers/userscript/flickchart/main.py
T
2013-11-05 23:35:47 +01:00

31 lines
821 B
Python

from couchpotato.core.event import fireEvent
from couchpotato.core.logger import CPLog
from couchpotato.core.providers.userscript.base import UserscriptBase
import traceback
log = CPLog(__name__)
class Flickchart(UserscriptBase):
includes = ['http://www.flickchart.com/movie/*']
def getMovie(self, url):
try:
data = self.getUrl(url)
except:
return
try:
start = data.find('<title>')
end = data.find('</title>', start)
page_title = data[start + len('<title>'):end].strip().split('-')
year_name = fireEvent('scanner.name_year', page_title[0], single = True)
return self.search(**year_name)
except:
log.error('Failed parsing page for title and year: %s', traceback.format_exc())