def __init__(self, session, url=None): ''' ''' printl ("", self, "S") DP_LibMain.__init__(self, session, "tv shows") self.g_url = url printl ("", self, "C")
def __init__(self, session, url=None): ''' ''' printl("", self, "S") DP_LibMain.__init__(self, session, "tv shows") self.g_url = url printl("", self, "C")
def __init__(self, session, url=None, uuid=None, source=None): printl ("", self, "S") DP_LibMain.__init__(self, session, "movies") self.g_url = url self.g_uuid = uuid self.g_source = source printl ("", self, "C")
def __init__(self, session, url=None, showEpisodesDirectly=False): ''' we use showEpisodesDirectly for the onDeck functions that forces us to jump directly to episodes ''' printl ("", self, "S") DP_LibMain.__init__(self, session, "tv shows") self.g_url = url self.showEpisodesDirectly = showEpisodesDirectly printl ("", self, "C")
def __init__(self, session, url=None, showEpisodesDirectly=False): ''' we use showEpisodesDirectly for the onDeck functions that forces us to jump directly to episodes ''' printl("", self, "S") DP_LibMain.__init__(self, session, "music") self.g_url = url self.showEpisodesDirectly = showEpisodesDirectly printl("", self, "C")
def __init__(self, session, url=None, showEpisodesDirectly=False, uuid=None, source=None): """ we use showEpisodesDirectly for the onDeck functions that forces us to jump directly to episodes """ printl("", self, "S") DP_LibMain.__init__(self, session, "tvshows") self.g_url = url self.showEpisodesDirectly = showEpisodesDirectly self.g_uuid = uuid self.g_source = source printl("", self, "C")