mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-06 01:15:05 -05:00
0d9fbc1ad7
This version of SickBeard uses both TVDB and TVRage to search and gather it's series data from allowing you to now have access to and download shows that you couldn't before because of being locked into only what TheTVDB had to offer. Also this edition is based off the code we used in our XEM editon so it does come with scene numbering support as well as all the other features our XEM edition has to offer. Please before using this with your existing database (sickbeard.db) please make a backup copy of it and delete any other database files such as cache.db and failed.db if present, we HIGHLY recommend starting out with no database files at all to make this a fresh start but the choice is at your own risk! Enjoy!
39 lines
1.4 KiB
Python
39 lines
1.4 KiB
Python
import sys
|
|
|
|
class LocalClasses(dict):
|
|
def add(self, cls):
|
|
self[cls.__name__] = cls
|
|
|
|
class Config(object):
|
|
"""
|
|
This is pretty much used exclusively for the 'jsonclass'
|
|
functionality... set use_jsonclass to False to turn it off.
|
|
You can change serialize_method and ignore_attribute, or use
|
|
the local_classes.add(class) to include "local" classes.
|
|
"""
|
|
use_jsonclass = True
|
|
# Change to False to keep __jsonclass__ entries raw.
|
|
serialize_method = '_serialize'
|
|
# The serialize_method should be a string that references the
|
|
# method on a custom class object which is responsible for
|
|
# returning a tuple of the constructor arguments and a dict of
|
|
# attributes.
|
|
ignore_attribute = '_ignore'
|
|
# The ignore attribute should be a string that references the
|
|
# attribute on a custom class object which holds strings and / or
|
|
# references of the attributes the class translator should ignore.
|
|
classes = LocalClasses()
|
|
# The list of classes to use for jsonclass translation.
|
|
version = 2.0
|
|
# Version of the JSON-RPC spec to support
|
|
user_agent = 'jsonrpclib/0.1 (Python %s)' % \
|
|
'.'.join([str(ver) for ver in sys.version_info[0:3]])
|
|
# User agent to use for calls.
|
|
_instance = None
|
|
|
|
@classmethod
|
|
def instance(cls):
|
|
if not cls._instance:
|
|
cls._instance = cls()
|
|
return cls._instance
|