You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
504 B
27 lines
504 B
14 years ago
|
from couchpotato.core.event import addEvent
|
||
|
from couchpotato.core.logger import CPLog
|
||
|
from couchpotato.core.plugins.base import Plugin
|
||
|
|
||
|
log = CPLog(__name__)
|
||
|
|
||
|
|
||
|
class MetaDataBase(Plugin):
|
||
|
|
||
|
def __init__(self):
|
||
|
addEvent('metadata.create', self.create)
|
||
|
|
||
|
def create(self):
|
||
|
print 'create metadata %s' % __name__
|
||
|
|
||
|
def getFanartName(self):
|
||
|
return
|
||
|
|
||
|
def getThumbnailName(self):
|
||
|
return
|
||
|
|
||
|
def getNfoName(self):
|
||
|
return
|
||
|
|
||
|
def getNfo(self):
|
||
|
return
|