2014-05-29 01:40:12 -04:00
|
|
|
# !/usr/bin/env python2
|
2014-08-29 13:05:15 -04:00
|
|
|
# encoding:utf-8
|
2014-11-24 21:47:14 -05:00
|
|
|
# author:echel0n
|
|
|
|
# project:tvrage_api
|
2014-03-10 01:18:05 -04:00
|
|
|
#repository:http://github.com/echel0n/tvrage_api
|
|
|
|
#license:unlicense (http://unlicense.org/)
|
|
|
|
|
|
|
|
"""
|
|
|
|
Modified from http://github.com/dbr/tvrage_api
|
|
|
|
Simple-to-use Python interface to The TVRage's API (tvrage.com)
|
|
|
|
"""
|
2014-04-22 15:15:15 -04:00
|
|
|
from functools import wraps
|
2014-07-27 06:59:21 -04:00
|
|
|
import traceback
|
2014-04-22 15:15:15 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
__author__ = "echel0n"
|
|
|
|
__version__ = "1.0"
|
|
|
|
|
|
|
|
import os
|
2014-03-13 23:07:15 -04:00
|
|
|
import re
|
2014-03-10 01:18:05 -04:00
|
|
|
import time
|
|
|
|
import getpass
|
|
|
|
import tempfile
|
|
|
|
import warnings
|
|
|
|
import logging
|
|
|
|
import datetime as dt
|
2014-04-22 15:15:15 -04:00
|
|
|
import requests
|
2014-07-27 06:59:21 -04:00
|
|
|
import requests.exceptions
|
2014-05-29 01:40:12 -04:00
|
|
|
import xmltodict
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
try:
|
|
|
|
import xml.etree.cElementTree as ElementTree
|
|
|
|
except ImportError:
|
|
|
|
import xml.etree.ElementTree as ElementTree
|
|
|
|
|
2014-04-25 17:22:31 -04:00
|
|
|
from lib.dateutil.parser import parse
|
2014-07-27 06:59:21 -04:00
|
|
|
from cachecontrol import CacheControl, caches
|
2014-03-14 13:15:02 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
from tvrage_ui import BaseUI
|
2014-11-24 21:47:14 -05:00
|
|
|
from tvrage_exceptions import (tvrage_error, tvrage_userabort, tvrage_shownotfound, tvrage_showincomplete,
|
2014-05-29 01:40:12 -04:00
|
|
|
tvrage_seasonnotfound, tvrage_episodenotfound, tvrage_attributenotfound)
|
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def log():
|
|
|
|
return logging.getLogger("tvrage_api")
|
|
|
|
|
2014-05-29 01:40:12 -04:00
|
|
|
|
2014-04-22 15:15:15 -04:00
|
|
|
def retry(ExceptionToCheck, tries=4, delay=3, backoff=2, logger=None):
|
|
|
|
"""Retry calling the decorated function using an exponential backoff.
|
|
|
|
|
|
|
|
http://www.saltycrane.com/blog/2009/11/trying-out-retry-decorator-python/
|
|
|
|
original from: http://wiki.python.org/moin/PythonDecoratorLibrary#Retry
|
|
|
|
|
|
|
|
:param ExceptionToCheck: the exception to check. may be a tuple of
|
|
|
|
exceptions to check
|
|
|
|
:type ExceptionToCheck: Exception or tuple
|
|
|
|
:param tries: number of times to try (not retry) before giving up
|
|
|
|
:type tries: int
|
|
|
|
:param delay: initial delay between retries in seconds
|
|
|
|
:type delay: int
|
|
|
|
:param backoff: backoff multiplier e.g. value of 2 will double the delay
|
|
|
|
each retry
|
|
|
|
:type backoff: int
|
|
|
|
:param logger: logger to use. If None, print
|
|
|
|
:type logger: logging.Logger instance
|
|
|
|
"""
|
|
|
|
|
|
|
|
def deco_retry(f):
|
|
|
|
|
|
|
|
@wraps(f)
|
|
|
|
def f_retry(*args, **kwargs):
|
|
|
|
mtries, mdelay = tries, delay
|
|
|
|
while mtries > 1:
|
|
|
|
try:
|
|
|
|
return f(*args, **kwargs)
|
|
|
|
except ExceptionToCheck, e:
|
|
|
|
msg = "%s, Retrying in %d seconds..." % (str(e), mdelay)
|
|
|
|
if logger:
|
|
|
|
logger.warning(msg)
|
|
|
|
else:
|
|
|
|
print msg
|
|
|
|
time.sleep(mdelay)
|
|
|
|
mtries -= 1
|
|
|
|
mdelay *= backoff
|
|
|
|
return f(*args, **kwargs)
|
|
|
|
|
|
|
|
return f_retry # true decorator
|
|
|
|
|
|
|
|
return deco_retry
|
|
|
|
|
2014-05-29 01:40:12 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
class ShowContainer(dict):
|
|
|
|
"""Simple dict that holds a series of Show instances
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self._stack = []
|
|
|
|
self._lastgc = time.time()
|
|
|
|
|
|
|
|
def __setitem__(self, key, value):
|
|
|
|
self._stack.append(key)
|
|
|
|
|
|
|
|
#keep only the 100th latest results
|
|
|
|
if time.time() - self._lastgc > 20:
|
2014-11-18 18:41:50 -05:00
|
|
|
for o in self._stack[:-100]:
|
2014-03-10 01:18:05 -04:00
|
|
|
del self[o]
|
2014-11-24 21:47:14 -05:00
|
|
|
|
2014-11-18 18:41:50 -05:00
|
|
|
self._stack = self._stack[-100:]
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-11-18 18:41:50 -05:00
|
|
|
self._lastgc = time.time()
|
2014-05-29 01:40:12 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
super(ShowContainer, self).__setitem__(key, value)
|
|
|
|
|
|
|
|
|
|
|
|
class Show(dict):
|
|
|
|
"""Holds a dict of seasons, and show data.
|
|
|
|
"""
|
2014-05-29 01:40:12 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
def __init__(self):
|
|
|
|
dict.__init__(self)
|
|
|
|
self.data = {}
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "<Show %s (containing %s seasons)>" % (
|
|
|
|
self.data.get(u'seriesname', 'instance'),
|
|
|
|
len(self)
|
|
|
|
)
|
|
|
|
|
|
|
|
def __getattr__(self, key):
|
|
|
|
if key in self:
|
|
|
|
# Key is an episode, return it
|
|
|
|
return self[key]
|
|
|
|
|
|
|
|
if key in self.data:
|
|
|
|
# Non-numeric request is for show-data
|
|
|
|
return self.data[key]
|
|
|
|
|
|
|
|
raise AttributeError
|
|
|
|
|
|
|
|
def __getitem__(self, key):
|
|
|
|
if key in self:
|
|
|
|
# Key is an episode, return it
|
|
|
|
return dict.__getitem__(self, key)
|
|
|
|
|
|
|
|
if key in self.data:
|
|
|
|
# Non-numeric request is for show-data
|
|
|
|
return dict.__getitem__(self.data, key)
|
|
|
|
|
|
|
|
# Data wasn't found, raise appropriate error
|
|
|
|
if isinstance(key, int) or key.isdigit():
|
|
|
|
# Episode number x was not found
|
|
|
|
raise tvrage_seasonnotfound("Could not find season %s" % (repr(key)))
|
|
|
|
else:
|
|
|
|
# If it's not numeric, it must be an attribute name, which
|
|
|
|
# doesn't exist, so attribute error.
|
|
|
|
raise tvrage_attributenotfound("Cannot find attribute %s" % (repr(key)))
|
|
|
|
|
|
|
|
def airedOn(self, date):
|
|
|
|
ret = self.search(str(date), 'firstaired')
|
|
|
|
if len(ret) == 0:
|
|
|
|
raise tvrage_episodenotfound("Could not find any episodes that aired on %s" % date)
|
|
|
|
return ret
|
|
|
|
|
2014-05-29 01:40:12 -04:00
|
|
|
def search(self, term=None, key=None):
|
2014-03-10 01:18:05 -04:00
|
|
|
"""
|
|
|
|
Search all episodes in show. Can search all data, or a specific key (for
|
|
|
|
example, episodename)
|
|
|
|
|
|
|
|
Always returns an array (can be empty). First index contains the first
|
|
|
|
match, and so on.
|
|
|
|
|
|
|
|
Each array index is an Episode() instance, so doing
|
|
|
|
search_results[0]['episodename'] will retrieve the episode name of the
|
|
|
|
first match.
|
|
|
|
|
|
|
|
Search terms are converted to lower case (unicode) strings.
|
|
|
|
"""
|
|
|
|
results = []
|
|
|
|
for cur_season in self.values():
|
2014-05-29 01:40:12 -04:00
|
|
|
searchresult = cur_season.search(term=term, key=key)
|
2014-03-10 01:18:05 -04:00
|
|
|
if len(searchresult) != 0:
|
|
|
|
results.extend(searchresult)
|
|
|
|
|
|
|
|
return results
|
|
|
|
|
|
|
|
|
|
|
|
class Season(dict):
|
2014-05-29 01:40:12 -04:00
|
|
|
def __init__(self, show=None):
|
2014-03-10 01:18:05 -04:00
|
|
|
"""The show attribute points to the parent show
|
|
|
|
"""
|
|
|
|
self.show = show
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "<Season instance (containing %s episodes)>" % (
|
|
|
|
len(self.keys())
|
|
|
|
)
|
|
|
|
|
|
|
|
def __getattr__(self, episode_number):
|
|
|
|
if episode_number in self:
|
|
|
|
return self[episode_number]
|
|
|
|
raise AttributeError
|
|
|
|
|
|
|
|
def __getitem__(self, episode_number):
|
|
|
|
if episode_number not in self:
|
|
|
|
raise tvrage_episodenotfound("Could not find episode %s" % (repr(episode_number)))
|
|
|
|
else:
|
|
|
|
return dict.__getitem__(self, episode_number)
|
|
|
|
|
2014-05-29 01:40:12 -04:00
|
|
|
def search(self, term=None, key=None):
|
2014-03-10 01:18:05 -04:00
|
|
|
"""Search all episodes in season, returns a list of matching Episode
|
|
|
|
instances.
|
|
|
|
"""
|
|
|
|
results = []
|
|
|
|
for ep in self.values():
|
2014-05-29 01:40:12 -04:00
|
|
|
searchresult = ep.search(term=term, key=key)
|
2014-03-10 01:18:05 -04:00
|
|
|
if searchresult is not None:
|
|
|
|
results.append(
|
|
|
|
searchresult
|
|
|
|
)
|
|
|
|
return results
|
|
|
|
|
|
|
|
|
|
|
|
class Episode(dict):
|
2014-05-29 01:40:12 -04:00
|
|
|
def __init__(self, season=None):
|
2014-03-10 01:18:05 -04:00
|
|
|
"""The season attribute points to the parent season
|
|
|
|
"""
|
|
|
|
self.season = season
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
seasno = int(self.get(u'seasonnumber', 0))
|
|
|
|
epno = int(self.get(u'episodenumber', 0))
|
|
|
|
epname = self.get(u'episodename')
|
|
|
|
if epname is not None:
|
|
|
|
return "<Episode %02dx%02d - %s>" % (seasno, epno, epname)
|
|
|
|
else:
|
|
|
|
return "<Episode %02dx%02d>" % (seasno, epno)
|
|
|
|
|
|
|
|
def __getattr__(self, key):
|
|
|
|
if key in self:
|
|
|
|
return self[key]
|
|
|
|
raise AttributeError
|
|
|
|
|
|
|
|
def __getitem__(self, key):
|
|
|
|
try:
|
|
|
|
return dict.__getitem__(self, key)
|
|
|
|
except KeyError:
|
|
|
|
raise tvrage_attributenotfound("Cannot find attribute %s" % (repr(key)))
|
|
|
|
|
2014-05-29 01:40:12 -04:00
|
|
|
def search(self, term=None, key=None):
|
2014-03-10 01:18:05 -04:00
|
|
|
"""Search episode data for term, if it matches, return the Episode (self).
|
|
|
|
The key parameter can be used to limit the search to a specific element,
|
|
|
|
for example, episodename.
|
|
|
|
|
|
|
|
This primarily for use use by Show.search and Season.search.
|
|
|
|
"""
|
|
|
|
if term == None:
|
|
|
|
raise TypeError("must supply string to search for (contents)")
|
|
|
|
|
|
|
|
term = unicode(term).lower()
|
|
|
|
for cur_key, cur_value in self.items():
|
|
|
|
cur_key, cur_value = unicode(cur_key).lower(), unicode(cur_value).lower()
|
|
|
|
if key is not None and cur_key != key:
|
|
|
|
# Do not search this key
|
|
|
|
continue
|
2014-05-29 01:40:12 -04:00
|
|
|
if cur_value.find(unicode(term).lower()) > -1:
|
2014-03-10 01:18:05 -04:00
|
|
|
return self
|
|
|
|
|
2014-05-29 01:40:12 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
class TVRage:
|
|
|
|
"""Create easy-to-use interface to name of season/episode name"""
|
2014-05-29 01:40:12 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
def __init__(self,
|
2014-05-29 01:40:12 -04:00
|
|
|
interactive=False,
|
|
|
|
select_first=False,
|
|
|
|
debug=False,
|
|
|
|
cache=True,
|
|
|
|
banners=False,
|
|
|
|
actors=False,
|
|
|
|
custom_ui=None,
|
|
|
|
language=None,
|
|
|
|
search_all_languages=False,
|
|
|
|
apikey=None,
|
|
|
|
forceConnect=False,
|
|
|
|
useZip=False,
|
2014-07-27 06:59:21 -04:00
|
|
|
dvdorder=False,
|
|
|
|
proxy=None):
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
"""
|
|
|
|
cache (True/False/str/unicode/urllib2 opener):
|
|
|
|
Retrieved XML are persisted to to disc. If true, stores in
|
|
|
|
tvrage_api folder under your systems TEMP_DIR, if set to
|
|
|
|
str/unicode instance it will use this as the cache
|
|
|
|
location. If False, disables caching. Can also be passed
|
|
|
|
an arbitrary Python object, which is used as a urllib2
|
|
|
|
opener, which should be created by urllib2.build_opener
|
|
|
|
|
|
|
|
forceConnect (bool):
|
|
|
|
If true it will always try to connect to tvrage.com even if we
|
|
|
|
recently timed out. By default it will wait one minute before
|
|
|
|
trying again, and any requests within that one minute window will
|
|
|
|
return an exception immediately.
|
|
|
|
"""
|
2014-03-16 02:28:11 -04:00
|
|
|
|
2014-05-29 01:40:12 -04:00
|
|
|
self.shows = ShowContainer() # Holds all Show classes
|
|
|
|
self.corrections = {} # Holds show-name to show_id mapping
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
self.config = {}
|
|
|
|
|
2014-03-13 23:07:15 -04:00
|
|
|
if apikey is not None:
|
|
|
|
self.config['apikey'] = apikey
|
|
|
|
else:
|
2014-05-29 01:40:12 -04:00
|
|
|
self.config['apikey'] = "Uhewg1Rr0o62fvZvUIZt" # tvdb_api's API key
|
2014-03-13 23:07:15 -04:00
|
|
|
|
2014-05-29 01:40:12 -04:00
|
|
|
self.config['debug_enabled'] = debug # show debugging messages
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-03-10 07:20:29 -04:00
|
|
|
self.config['custom_ui'] = custom_ui
|
|
|
|
|
2014-07-27 06:59:21 -04:00
|
|
|
self.config['proxy'] = proxy
|
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
if cache is True:
|
|
|
|
self.config['cache_enabled'] = True
|
2014-06-30 02:20:19 -04:00
|
|
|
self.config['cache_location'] = self._getTempDir()
|
2014-03-10 01:18:05 -04:00
|
|
|
elif cache is False:
|
|
|
|
self.config['cache_enabled'] = False
|
|
|
|
elif isinstance(cache, basestring):
|
|
|
|
self.config['cache_enabled'] = True
|
2014-06-30 02:20:19 -04:00
|
|
|
self.config['cache_location'] = cache
|
2014-03-10 01:18:05 -04:00
|
|
|
else:
|
|
|
|
raise ValueError("Invalid value for Cache %r (type was %s)" % (cache, type(cache)))
|
|
|
|
|
|
|
|
if self.config['debug_enabled']:
|
|
|
|
warnings.warn("The debug argument to tvrage_api.__init__ will be removed in the next version. "
|
2014-05-29 01:40:12 -04:00
|
|
|
"To enable debug messages, use the following code before importing: "
|
|
|
|
"import logging; logging.basicConfig(level=logging.DEBUG)")
|
2014-03-10 01:18:05 -04:00
|
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
|
|
|
|
|
|
|
|
|
|
# List of language from http://tvrage.com/api/0629B785CE550C8D/languages.xml
|
|
|
|
# Hard-coded here as it is realtively static, and saves another HTTP request, as
|
|
|
|
# recommended on http://tvrage.com/wiki/index.php/API:languages.xml
|
|
|
|
self.config['valid_languages'] = [
|
2014-05-29 01:40:12 -04:00
|
|
|
"da", "fi", "nl", "de", "it", "es", "fr", "pl", "hu", "el", "tr",
|
|
|
|
"ru", "he", "ja", "pt", "zh", "cs", "sl", "hr", "ko", "en", "sv", "no"
|
2014-03-10 01:18:05 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
# tvrage.com should be based around numeric language codes,
|
|
|
|
# but to link to a series like http://tvrage.com/?tab=series&id=79349&lid=16
|
|
|
|
# requires the language ID, thus this mapping is required (mainly
|
|
|
|
# for usage in tvrage_ui - internally tvrage_api will use the language abbreviations)
|
|
|
|
self.config['langabbv_to_id'] = {'el': 20, 'en': 7, 'zh': 27,
|
2014-05-29 01:40:12 -04:00
|
|
|
'it': 15, 'cs': 28, 'es': 16, 'ru': 22, 'nl': 13, 'pt': 26, 'no': 9,
|
|
|
|
'tr': 21, 'pl': 18, 'fr': 17, 'hr': 31, 'de': 14, 'da': 10, 'fi': 11,
|
|
|
|
'hu': 19, 'ja': 25, 'he': 24, 'ko': 32, 'sv': 8, 'sl': 30}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
if language is None:
|
|
|
|
self.config['language'] = 'en'
|
|
|
|
else:
|
|
|
|
if language not in self.config['valid_languages']:
|
|
|
|
raise ValueError("Invalid language %s, options are: %s" % (
|
|
|
|
language, self.config['valid_languages']
|
|
|
|
))
|
|
|
|
else:
|
|
|
|
self.config['language'] = language
|
|
|
|
|
|
|
|
# The following url_ configs are based of the
|
|
|
|
# http://tvrage.com/wiki/index.php/Programmers_API
|
2014-03-14 13:15:02 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
self.config['base_url'] = "http://services.tvrage.com"
|
|
|
|
|
2014-03-25 01:57:24 -04:00
|
|
|
self.config['url_getSeries'] = u"%(base_url)s/feeds/search.php" % self.config
|
|
|
|
self.config['params_getSeries'] = {"show": ""}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-03-14 13:15:02 -04:00
|
|
|
self.config['url_epInfo'] = u"%(base_url)s/myfeeds/episode_list.php" % self.config
|
|
|
|
self.config['params_epInfo'] = {"key": self.config['apikey'], "sid": ""}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-03-14 13:15:02 -04:00
|
|
|
self.config['url_seriesInfo'] = u"%(base_url)s/myfeeds/showinfo.php" % self.config
|
|
|
|
self.config['params_seriesInfo'] = {"key": self.config['apikey'], "sid": ""}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-07-24 00:44:11 -04:00
|
|
|
self.config['url_updtes_all'] = u"%(base_url)s/myfeeds/currentshows.php" % self.config
|
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
def _getTempDir(self):
|
|
|
|
"""Returns the [system temp dir]/tvrage_api-u501 (or
|
|
|
|
tvrage_api-myuser)
|
|
|
|
"""
|
|
|
|
if hasattr(os, 'getuid'):
|
|
|
|
uid = "u%d" % (os.getuid())
|
|
|
|
else:
|
|
|
|
# For Windows
|
|
|
|
try:
|
|
|
|
uid = getpass.getuser()
|
|
|
|
except ImportError:
|
|
|
|
return os.path.join(tempfile.gettempdir(), "tvrage_api")
|
|
|
|
|
|
|
|
return os.path.join(tempfile.gettempdir(), "tvrage_api-%s" % (uid))
|
|
|
|
|
2014-12-03 01:13:28 -05:00
|
|
|
@retry(tvrage_error)
|
2014-03-14 13:15:02 -04:00
|
|
|
def _loadUrl(self, url, params=None):
|
2014-03-10 01:18:05 -04:00
|
|
|
try:
|
|
|
|
log().debug("Retrieving URL %s" % url)
|
2014-03-14 13:15:02 -04:00
|
|
|
|
2014-03-20 01:33:34 -04:00
|
|
|
# get response from TVRage
|
2014-03-14 13:15:02 -04:00
|
|
|
if self.config['cache_enabled']:
|
2014-07-28 12:03:07 -04:00
|
|
|
session = CacheControl(cache=caches.FileCache(self.config['cache_location']))
|
2014-07-27 06:59:21 -04:00
|
|
|
if self.config['proxy']:
|
|
|
|
log().debug("Using proxy for URL: %s" % url)
|
2014-07-28 12:03:07 -04:00
|
|
|
session.proxies = {
|
2014-07-27 06:59:21 -04:00
|
|
|
"http": self.config['proxy'],
|
|
|
|
"https": self.config['proxy'],
|
|
|
|
}
|
|
|
|
|
2014-07-28 12:03:07 -04:00
|
|
|
resp = session.get(url.strip(), cache_auto=True, params=params)
|
2014-03-27 08:06:40 -04:00
|
|
|
else:
|
2014-05-29 01:40:12 -04:00
|
|
|
resp = requests.get(url.strip(), params=params)
|
2014-03-14 13:15:02 -04:00
|
|
|
|
2014-11-30 12:37:39 -05:00
|
|
|
resp.raise_for_status()
|
2014-07-27 06:59:21 -04:00
|
|
|
except requests.exceptions.HTTPError, e:
|
2014-03-15 22:17:34 -04:00
|
|
|
raise tvrage_error("HTTP error " + str(e.errno) + " while loading URL " + str(url))
|
2014-07-27 06:59:21 -04:00
|
|
|
except requests.exceptions.ConnectionError, e:
|
2014-03-15 22:17:34 -04:00
|
|
|
raise tvrage_error("Connection error " + str(e.message) + " while loading URL " + str(url))
|
2014-07-27 06:59:21 -04:00
|
|
|
except requests.exceptions.Timeout, e:
|
2014-03-15 22:17:34 -04:00
|
|
|
raise tvrage_error("Connection timed out " + str(e.message) + " while loading URL " + str(url))
|
2014-07-27 06:59:21 -04:00
|
|
|
except Exception:
|
|
|
|
raise tvrage_error("Unknown exception while loading URL " + url + ": " + traceback.format_exc())
|
2014-03-15 22:17:34 -04:00
|
|
|
|
2014-05-29 01:40:12 -04:00
|
|
|
def remap_keys(path, key, value):
|
|
|
|
name_map = {
|
|
|
|
'showid': 'id',
|
|
|
|
'showname': 'seriesname',
|
|
|
|
'name': 'seriesname',
|
|
|
|
'summary': 'overview',
|
|
|
|
'started': 'firstaired',
|
|
|
|
'genres': 'genre',
|
|
|
|
'airtime': 'airs_time',
|
|
|
|
'airday': 'airs_dayofweek',
|
|
|
|
'image': 'fanart',
|
|
|
|
'epnum': 'absolute_number',
|
|
|
|
'title': 'episodename',
|
|
|
|
'airdate': 'firstaired',
|
|
|
|
'screencap': 'filename',
|
|
|
|
'seasonnum': 'episodenumber'
|
|
|
|
}
|
|
|
|
|
2014-12-13 14:06:33 -05:00
|
|
|
status_map = {
|
|
|
|
'returning series': 'Continuing',
|
|
|
|
'canceled/ended': 'Ended',
|
|
|
|
'tbd/on the bubble': 'Continuing',
|
|
|
|
'in development': 'Continuing',
|
|
|
|
'new series': 'Continuing',
|
|
|
|
'never aired': 'Ended',
|
|
|
|
'final season': 'Continuing',
|
|
|
|
'on hiatus': 'Continuing',
|
|
|
|
'pilot ordered': 'Continuing',
|
|
|
|
'pilot rejected': 'Ended',
|
|
|
|
'canceled': 'Ended',
|
|
|
|
'ended': 'Ended',
|
|
|
|
'': 'Unknown',
|
|
|
|
}
|
|
|
|
|
2014-05-29 01:40:12 -04:00
|
|
|
try:
|
|
|
|
key = name_map[key.lower()]
|
|
|
|
except (ValueError, TypeError, KeyError):
|
2014-05-29 09:27:05 -04:00
|
|
|
key = key.lower()
|
2014-05-29 01:40:12 -04:00
|
|
|
|
|
|
|
# clean up value and do type changes
|
|
|
|
if value:
|
|
|
|
if isinstance(value, dict):
|
2014-12-13 14:06:33 -05:00
|
|
|
if key == 'status':
|
|
|
|
try:
|
|
|
|
value = status_map[str(value).lower()]
|
|
|
|
if not value:
|
|
|
|
raise
|
|
|
|
except:
|
|
|
|
value = 'Unknown'
|
|
|
|
|
2014-05-29 01:40:12 -04:00
|
|
|
if key == 'network':
|
|
|
|
value = value['#text']
|
2014-12-13 14:06:33 -05:00
|
|
|
|
2014-05-29 01:40:12 -04:00
|
|
|
if key == 'genre':
|
|
|
|
value = value['genre']
|
Update tvrage_api.py
Bugfix by viperidae
Reference:
---------------
Reference: https://sickrage.tv/forums/forum/help-support/bug-issue-reports/6224-there-was-an-error-with-the-xml-retrieved-from-tvrage-com
Quote:
----------
Had a look at the code and the xml documents...
It looks like the problem is caused by an empty <genre /> element in Results/shows/show/genres/
Line 459 of tvrage_api.py (it's 460 in my track in the previous post because of the debug statements I put in)
I assume it's because value is NoneType, gets replaced by a [NoneType] list and then tries to call '|'.join([NoneType]) when it was expecting a list of strings.
I changed this to the following and the problem appears to be resolved
Syslog extract:
----------------------
tvrage_error: There was an error with the XML retrieved from tvrage.com
First try emptying the cache folder at..
C:\Users\Josh\Documents\Programs\SickRage\cache\indexers\TVRage
If this does not resolve the issue, please try again later. If the error persists, report a bug on
2014-08-09 00:43:25 INFO SEARCHQUEUE-BACKLOG-74608 :: [NMatrix] :: Searching for episodes we need from Top Gear Season 21
2014-08-09 00:43:25 DB SEARCHQUEUE-BACKLOG-74608 :: [NMatrix] :: cache.db: SELECT * FROM [nmatrix] WHERE indexerid = ? AND season = ? AND episodes LIKE ? with args [74608, 21, '%|2|%']
2014-08-09 00:43:25 DB SEARCHQUEUE-BACKLOG-74608 :: [NMatrix] :: cache.db: UPDATE lastSearch SET time = ? WHERE provider = ? with args [1407559405, 'nmatrix']
2014-08-09 00:43:25 DB SEARCHQUEUE-BACKLOG-74608 :: [NMatrix] :: cache.db: INSERT INTO lastSearch (time, provider) VALUES (?, ?) with args [1407559405, 'nmatrix']
2014-08-09 00:43:25 DB SEARCHQUEUE-BACKLOG-74608 :: [NMatrix] :: sickbeard.db: SELECT * FROM indexer_mapping WHERE indexer_id = ? AND indexer = ? with args [74608, 1]
2014-08-09 00:43:25 ERROR SEARCHQUEUE-BACKLOG-74608 :: [NMatrix] :: Error while searching NMatrix, skipping: There was an error with the XML retrieved from tvrage.com
First try emptying the cache folder at..
C:\Users\Josh\Documents\Programs\SickRage\cache\indexers\TVRage
If this does not resolve the issue, please try again later. If the error persists, report a bug on
2014-08-09 00:43:25 DEBUG SEARCHQUEUE-BACKLOG-74608 :: [NMatrix] :: Traceback (most recent call last):
File "C:\Users\Josh\Documents\Programs\SickRage\sickbeard\search.py", line 428, in searchProviders
searchResults = curProvider.findSearchResults(show, season, episodes, search_mode, manualSearch)
File "C:\Users\Josh\Documents\Programs\SickRage\sickbeard\providers\generic.py", line 264, in findSearchResults
for curString in self._get_episode_search_strings(epObj):
File "C:\Users\Josh\Documents\Programs\SickRage\sickbeard\providers\newznab.py", line 133, in _get_episode_search_strings
rid = helpers.mapIndexersToShow(ep_obj.show)[2]
File "C:\Users\Josh\Documents\Programs\SickRage\sickbeard\helpers.py", line 1178, in mapIndexersToShow
mapped_show = t[showObj.name]
File "C:\Users\Josh\Documents\Programs\SickRage\lib\tvrage_api\tvrage_api.py", line 675, in __getitem__
selected_series = self._getSeries(key)
File "C:\Users\Josh\Documents\Programs\SickRage\lib\tvrage_api\tvrage_api.py", line 566, in _getSeries
allSeries = self.search(series)
File "C:\Users\Josh\Documents\Programs\SickRage\lib\tvrage_api\tvrage_api.py", line 557, in search
seriesEt = self._getetsrc(self.config['url_getSeries'], self.config['params_getSeries'])
File "C:\Users\Josh\Documents\Programs\SickRage\lib\tvrage_api\tvrage_api.py", line 500, in _getetsrc
raise tvrage_error(errormsg)
2014-08-09 02:36:21 -04:00
|
|
|
if not value:
|
2014-08-29 13:05:15 -04:00
|
|
|
value = []
|
2014-05-29 01:40:12 -04:00
|
|
|
if not isinstance(value, list):
|
|
|
|
value = [value]
|
Update tvrage_api.py
Bugfix by viperidae
Reference:
---------------
Reference: https://sickrage.tv/forums/forum/help-support/bug-issue-reports/6224-there-was-an-error-with-the-xml-retrieved-from-tvrage-com
Quote:
----------
Had a look at the code and the xml documents...
It looks like the problem is caused by an empty <genre /> element in Results/shows/show/genres/
Line 459 of tvrage_api.py (it's 460 in my track in the previous post because of the debug statements I put in)
I assume it's because value is NoneType, gets replaced by a [NoneType] list and then tries to call '|'.join([NoneType]) when it was expecting a list of strings.
I changed this to the following and the problem appears to be resolved
Syslog extract:
----------------------
tvrage_error: There was an error with the XML retrieved from tvrage.com
First try emptying the cache folder at..
C:\Users\Josh\Documents\Programs\SickRage\cache\indexers\TVRage
If this does not resolve the issue, please try again later. If the error persists, report a bug on
2014-08-09 00:43:25 INFO SEARCHQUEUE-BACKLOG-74608 :: [NMatrix] :: Searching for episodes we need from Top Gear Season 21
2014-08-09 00:43:25 DB SEARCHQUEUE-BACKLOG-74608 :: [NMatrix] :: cache.db: SELECT * FROM [nmatrix] WHERE indexerid = ? AND season = ? AND episodes LIKE ? with args [74608, 21, '%|2|%']
2014-08-09 00:43:25 DB SEARCHQUEUE-BACKLOG-74608 :: [NMatrix] :: cache.db: UPDATE lastSearch SET time = ? WHERE provider = ? with args [1407559405, 'nmatrix']
2014-08-09 00:43:25 DB SEARCHQUEUE-BACKLOG-74608 :: [NMatrix] :: cache.db: INSERT INTO lastSearch (time, provider) VALUES (?, ?) with args [1407559405, 'nmatrix']
2014-08-09 00:43:25 DB SEARCHQUEUE-BACKLOG-74608 :: [NMatrix] :: sickbeard.db: SELECT * FROM indexer_mapping WHERE indexer_id = ? AND indexer = ? with args [74608, 1]
2014-08-09 00:43:25 ERROR SEARCHQUEUE-BACKLOG-74608 :: [NMatrix] :: Error while searching NMatrix, skipping: There was an error with the XML retrieved from tvrage.com
First try emptying the cache folder at..
C:\Users\Josh\Documents\Programs\SickRage\cache\indexers\TVRage
If this does not resolve the issue, please try again later. If the error persists, report a bug on
2014-08-09 00:43:25 DEBUG SEARCHQUEUE-BACKLOG-74608 :: [NMatrix] :: Traceback (most recent call last):
File "C:\Users\Josh\Documents\Programs\SickRage\sickbeard\search.py", line 428, in searchProviders
searchResults = curProvider.findSearchResults(show, season, episodes, search_mode, manualSearch)
File "C:\Users\Josh\Documents\Programs\SickRage\sickbeard\providers\generic.py", line 264, in findSearchResults
for curString in self._get_episode_search_strings(epObj):
File "C:\Users\Josh\Documents\Programs\SickRage\sickbeard\providers\newznab.py", line 133, in _get_episode_search_strings
rid = helpers.mapIndexersToShow(ep_obj.show)[2]
File "C:\Users\Josh\Documents\Programs\SickRage\sickbeard\helpers.py", line 1178, in mapIndexersToShow
mapped_show = t[showObj.name]
File "C:\Users\Josh\Documents\Programs\SickRage\lib\tvrage_api\tvrage_api.py", line 675, in __getitem__
selected_series = self._getSeries(key)
File "C:\Users\Josh\Documents\Programs\SickRage\lib\tvrage_api\tvrage_api.py", line 566, in _getSeries
allSeries = self.search(series)
File "C:\Users\Josh\Documents\Programs\SickRage\lib\tvrage_api\tvrage_api.py", line 557, in search
seriesEt = self._getetsrc(self.config['url_getSeries'], self.config['params_getSeries'])
File "C:\Users\Josh\Documents\Programs\SickRage\lib\tvrage_api\tvrage_api.py", line 500, in _getetsrc
raise tvrage_error(errormsg)
2014-08-09 02:36:21 -04:00
|
|
|
value = filter(None, value)
|
2014-05-29 01:40:12 -04:00
|
|
|
value = '|' + '|'.join(value) + '|'
|
2014-12-13 14:06:33 -05:00
|
|
|
|
2014-05-29 01:40:12 -04:00
|
|
|
try:
|
|
|
|
if key == 'firstaired' and value in "0000-00-00":
|
|
|
|
new_value = str(dt.date.fromordinal(1))
|
|
|
|
new_value = re.sub("([-]0{2}){1,}", "", new_value)
|
|
|
|
fixDate = parse(new_value, fuzzy=True).date()
|
|
|
|
value = fixDate.strftime("%Y-%m-%d")
|
|
|
|
elif key == 'firstaired':
|
|
|
|
value = parse(value, fuzzy=True).date()
|
|
|
|
value = value.strftime("%Y-%m-%d")
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
return (key, value)
|
|
|
|
|
2014-12-03 01:13:28 -05:00
|
|
|
try:
|
2014-12-14 22:35:47 -05:00
|
|
|
return xmltodict.parse(resp.content.decode('utf-8'), postprocessor=remap_keys)
|
2014-12-03 01:13:28 -05:00
|
|
|
except:
|
|
|
|
return dict([(u'data', None)])
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-03-14 13:15:02 -04:00
|
|
|
def _getetsrc(self, url, params=None):
|
2014-03-10 01:18:05 -04:00
|
|
|
"""Loads a URL using caching, returns an ElementTree of the source
|
|
|
|
"""
|
2014-05-29 01:40:12 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
try:
|
2014-11-24 21:47:14 -05:00
|
|
|
return self._loadUrl(url, params).values()[0]
|
|
|
|
except Exception, e:
|
|
|
|
raise tvrage_error(e)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def _setItem(self, sid, seas, ep, attrib, value):
|
|
|
|
"""Creates a new episode, creating Show(), Season() and
|
|
|
|
Episode()s as required. Called by _getShowData to populate show
|
|
|
|
|
|
|
|
Since the nice-to-use tvrage[1][24]['name] interface
|
|
|
|
makes it impossible to do tvrage[1][24]['name] = "name"
|
|
|
|
and still be capable of checking if an episode exists
|
|
|
|
so we can raise tvrage_shownotfound, we have a slightly
|
|
|
|
less pretty method of setting items.. but since the API
|
|
|
|
is supposed to be read-only, this is the best way to
|
|
|
|
do it!
|
|
|
|
The problem is that calling tvrage[1][24]['episodename'] = "name"
|
|
|
|
calls __getitem__ on tvrage[1], there is no way to check if
|
|
|
|
tvrage.__dict__ should have a key "1" before we auto-create it
|
|
|
|
"""
|
|
|
|
if sid not in self.shows:
|
|
|
|
self.shows[sid] = Show()
|
|
|
|
if seas not in self.shows[sid]:
|
2014-05-29 01:40:12 -04:00
|
|
|
self.shows[sid][seas] = Season(show=self.shows[sid])
|
2014-03-10 01:18:05 -04:00
|
|
|
if ep not in self.shows[sid][seas]:
|
2014-05-29 01:40:12 -04:00
|
|
|
self.shows[sid][seas][ep] = Episode(season=self.shows[sid][seas])
|
2014-03-10 01:18:05 -04:00
|
|
|
self.shows[sid][seas][ep][attrib] = value
|
|
|
|
|
|
|
|
def _setShowData(self, sid, key, value):
|
|
|
|
"""Sets self.shows[sid] to a new Show instance, or sets the data
|
|
|
|
"""
|
|
|
|
if sid not in self.shows:
|
|
|
|
self.shows[sid] = Show()
|
2014-11-24 21:47:14 -05:00
|
|
|
self.shows[sid].data[key] = value
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def _cleanData(self, data):
|
|
|
|
"""Cleans up strings returned by tvrage.com
|
|
|
|
|
|
|
|
Issues corrected:
|
|
|
|
- Replaces & with &
|
|
|
|
- Trailing whitespace
|
|
|
|
"""
|
2014-06-05 15:17:49 -04:00
|
|
|
|
2014-12-03 01:13:28 -05:00
|
|
|
if isinstance(data, basestring):
|
2014-06-05 15:17:49 -04:00
|
|
|
data = data.replace(u"&", u"&")
|
|
|
|
data = data.strip()
|
2014-06-07 07:06:21 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
return data
|
|
|
|
|
|
|
|
def search(self, series):
|
|
|
|
"""This searches tvrage.com for the series name
|
|
|
|
and returns the result list
|
|
|
|
"""
|
2014-03-25 01:57:24 -04:00
|
|
|
series = series.encode("utf-8")
|
2014-03-10 01:18:05 -04:00
|
|
|
log().debug("Searching for show %s" % series)
|
2014-03-14 13:15:02 -04:00
|
|
|
self.config['params_getSeries']['show'] = series
|
2014-08-29 13:05:15 -04:00
|
|
|
|
2014-11-24 21:47:14 -05:00
|
|
|
return self._getetsrc(self.config['url_getSeries'], self.config['params_getSeries']).values()[0]
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def _getSeries(self, series):
|
|
|
|
"""This searches tvrage.com for the series name,
|
|
|
|
If a custom_ui UI is configured, it uses this to select the correct
|
|
|
|
series. If not, and interactive == True, ConsoleUI is used, if not
|
|
|
|
BaseUI is used to select the first result.
|
|
|
|
"""
|
|
|
|
allSeries = self.search(series)
|
2014-11-24 21:47:14 -05:00
|
|
|
if not allSeries:
|
|
|
|
log().debug('Series result returned zero')
|
|
|
|
raise tvrage_shownotfound("Show search returned zero results (cannot find show on TVRAGE)")
|
|
|
|
|
2014-05-29 10:00:41 -04:00
|
|
|
if not isinstance(allSeries, list):
|
|
|
|
allSeries = [allSeries]
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-03-10 07:20:29 -04:00
|
|
|
if self.config['custom_ui'] is not None:
|
|
|
|
log().debug("Using custom UI %s" % (repr(self.config['custom_ui'])))
|
2014-07-27 06:59:21 -04:00
|
|
|
CustomUI = self.config['custom_ui']
|
|
|
|
ui = CustomUI(config=self.config)
|
2014-03-10 07:20:29 -04:00
|
|
|
else:
|
|
|
|
log().debug('Auto-selecting first search result using BaseUI')
|
2014-05-29 01:40:12 -04:00
|
|
|
ui = BaseUI(config=self.config)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
return ui.selectSeries(allSeries)
|
|
|
|
|
2014-09-15 04:28:11 -04:00
|
|
|
def _getShowData(self, sid, getEpInfo=False):
|
2014-03-10 01:18:05 -04:00
|
|
|
"""Takes a series ID, gets the epInfo URL and parses the TVRAGE
|
|
|
|
XML file into the shows dict in layout:
|
|
|
|
shows[series_id][season_number][episode_number]
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Parse show information
|
|
|
|
log().debug('Getting all series data for %s' % (sid))
|
2014-03-14 13:15:02 -04:00
|
|
|
self.config['params_seriesInfo']['sid'] = sid
|
2014-03-10 01:18:05 -04:00
|
|
|
seriesInfoEt = self._getetsrc(
|
2014-03-14 13:15:02 -04:00
|
|
|
self.config['url_seriesInfo'],
|
|
|
|
self.config['params_seriesInfo']
|
2014-03-10 01:18:05 -04:00
|
|
|
)
|
|
|
|
|
2014-11-24 21:47:14 -05:00
|
|
|
if not seriesInfoEt:
|
|
|
|
log().debug('Series result returned zero')
|
2014-11-30 12:37:39 -05:00
|
|
|
raise tvrage_error("Series result returned zero")
|
2014-11-24 21:47:14 -05:00
|
|
|
|
2014-11-23 20:21:34 -05:00
|
|
|
# get series data
|
2014-11-24 21:47:14 -05:00
|
|
|
for k, v in seriesInfoEt.items():
|
|
|
|
if v is not None:
|
|
|
|
v = self._cleanData(v)
|
2014-05-29 09:27:05 -04:00
|
|
|
|
2014-11-24 21:47:14 -05:00
|
|
|
self._setShowData(sid, k, v)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-11-23 20:21:34 -05:00
|
|
|
# get episode data
|
2014-09-15 04:28:11 -04:00
|
|
|
if getEpInfo:
|
|
|
|
# Parse episode data
|
|
|
|
log().debug('Getting all episodes of %s' % (sid))
|
|
|
|
self.config['params_epInfo']['sid'] = sid
|
2014-11-24 21:47:14 -05:00
|
|
|
epsEt = self._getetsrc(self.config['url_epInfo'], self.config['params_epInfo'])
|
2014-09-15 04:28:11 -04:00
|
|
|
|
2014-11-24 21:47:14 -05:00
|
|
|
if not epsEt:
|
|
|
|
log().debug('Series results incomplete')
|
|
|
|
raise tvrage_showincomplete(
|
|
|
|
"Show search returned incomplete results (cannot find complete show on TVRAGE)")
|
2014-11-23 05:28:52 -05:00
|
|
|
|
2014-11-24 21:47:14 -05:00
|
|
|
seasons = epsEt['episodelist']['season']
|
2014-09-15 04:28:11 -04:00
|
|
|
if not isinstance(seasons, list):
|
|
|
|
seasons = [seasons]
|
|
|
|
|
|
|
|
for season in seasons:
|
|
|
|
seas_no = int(season['@no'])
|
2014-11-24 21:47:14 -05:00
|
|
|
|
2014-09-15 04:28:11 -04:00
|
|
|
episodes = season['episode']
|
|
|
|
if not isinstance(episodes, list):
|
|
|
|
episodes = [episodes]
|
|
|
|
|
|
|
|
for episode in episodes:
|
|
|
|
ep_no = int(episode['episodenumber'])
|
|
|
|
|
|
|
|
for k, v in episode.items():
|
2014-11-24 21:47:14 -05:00
|
|
|
k = k.lower()
|
|
|
|
|
|
|
|
if v is not None:
|
|
|
|
if k == 'link':
|
|
|
|
v = v.rsplit('/', 1)[1]
|
|
|
|
k = 'id'
|
|
|
|
else:
|
2014-09-15 04:28:11 -04:00
|
|
|
v = self._cleanData(v)
|
|
|
|
|
2014-11-24 21:47:14 -05:00
|
|
|
self._setItem(sid, seas_no, ep_no, k, v)
|
|
|
|
|
2014-03-25 01:57:24 -04:00
|
|
|
return True
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def _nameToSid(self, name):
|
|
|
|
"""Takes show name, returns the correct series ID (if the show has
|
|
|
|
already been grabbed), or grabs all episodes and returns
|
|
|
|
the correct SID.
|
|
|
|
"""
|
|
|
|
if name in self.corrections:
|
2014-05-29 01:40:12 -04:00
|
|
|
log().debug('Correcting %s to %s' % (name, self.corrections[name]))
|
2014-03-27 05:42:00 -04:00
|
|
|
return self.corrections[name]
|
2014-03-10 01:18:05 -04:00
|
|
|
else:
|
|
|
|
log().debug('Getting show %s' % (name))
|
2014-03-27 05:42:00 -04:00
|
|
|
selected_series = self._getSeries(name)
|
2014-03-25 01:57:24 -04:00
|
|
|
if isinstance(selected_series, dict):
|
|
|
|
selected_series = [selected_series]
|
2014-09-15 04:28:11 -04:00
|
|
|
sids = list(int(x['id']) for x in selected_series if self._getShowData(int(x['id'])))
|
2014-03-27 05:42:00 -04:00
|
|
|
self.corrections.update(dict((x['seriesname'], int(x['id'])) for x in selected_series))
|
|
|
|
return sids
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def __getitem__(self, key):
|
|
|
|
"""Handles tvrage_instance['seriesname'] calls.
|
|
|
|
The dict index should be the show id
|
|
|
|
"""
|
|
|
|
if isinstance(key, (int, long)):
|
|
|
|
# Item is integer, treat as show id
|
|
|
|
if key not in self.shows:
|
2014-09-15 04:28:11 -04:00
|
|
|
self._getShowData(key, True)
|
2014-11-24 21:47:14 -05:00
|
|
|
return self.shows[key]
|
2014-04-24 07:52:44 -04:00
|
|
|
|
2014-11-24 21:47:14 -05:00
|
|
|
key = str(key).lower()
|
2014-04-24 07:52:44 -04:00
|
|
|
self.config['searchterm'] = key
|
|
|
|
selected_series = self._getSeries(key)
|
|
|
|
if isinstance(selected_series, dict):
|
|
|
|
selected_series = [selected_series]
|
2014-04-25 17:22:31 -04:00
|
|
|
[[self._setShowData(show['id'], k, v) for k, v in show.items()] for show in selected_series]
|
2014-04-24 07:52:44 -04:00
|
|
|
return selected_series
|
|
|
|
#test = self._getSeries(key)
|
|
|
|
#sids = self._nameToSid(key)
|
|
|
|
#return list(self.shows[sid] for sid in sids)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return str(self.shows)
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
"""Simple example of using tvrage_api - it just
|
|
|
|
grabs an episode name interactively.
|
|
|
|
"""
|
|
|
|
import logging
|
2014-05-29 01:40:12 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
|
|
|
|
|
|
tvrage_instance = TVRage(cache=False)
|
|
|
|
print tvrage_instance['Lost']['seriesname']
|
|
|
|
print tvrage_instance['Lost'][1][4]['episodename']
|
|
|
|
|
2014-05-29 01:40:12 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|